[][src]Trait gstreamer_base::prelude::AggregatorExtManual

pub trait AggregatorExtManual: 'static {
    pub fn get_allocator(&self) -> (Option<Allocator>, AllocationParams);
pub fn finish_buffer(
        &self,
        buffer: Buffer
    ) -> Result<FlowSuccess, FlowError>;
pub fn finish_buffer_list(
        &self,
        bufferlist: BufferList
    ) -> Result<FlowSuccess, FlowError>;
pub fn get_property_min_upstream_latency(&self) -> ClockTime;
pub fn set_property_min_upstream_latency(
        &self,
        min_upstream_latency: ClockTime
    );
pub fn connect_property_min_upstream_latency_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn update_segment<F: FormattedValue>(
        &self,
        segment: &FormattedSegment<F>
    );
pub fn selected_samples(
        &self,
        pts: ClockTime,
        dts: ClockTime,
        duration: ClockTime,
        info: Option<&StructureRef>
    );
pub fn connect_samples_selected<P, F: Fn(&P, &Segment, ClockTime, ClockTime, ClockTime, Option<&StructureRef>) + Send + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        P: IsA<Aggregator>
; }

Required methods

pub fn get_allocator(&self) -> (Option<Allocator>, AllocationParams)[src]

pub fn finish_buffer(&self, buffer: Buffer) -> Result<FlowSuccess, FlowError>[src]

pub fn finish_buffer_list(
    &self,
    bufferlist: BufferList
) -> Result<FlowSuccess, FlowError>
[src]

pub fn get_property_min_upstream_latency(&self) -> ClockTime[src]

pub fn set_property_min_upstream_latency(&self, min_upstream_latency: ClockTime)[src]

pub fn connect_property_min_upstream_latency_notify<F: Fn(&Self) + Send + Sync + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

pub fn update_segment<F: FormattedValue>(&self, segment: &FormattedSegment<F>)[src]

pub fn selected_samples(
    &self,
    pts: ClockTime,
    dts: ClockTime,
    duration: ClockTime,
    info: Option<&StructureRef>
)
[src]

pub fn connect_samples_selected<P, F: Fn(&P, &Segment, ClockTime, ClockTime, ClockTime, Option<&StructureRef>) + Send + 'static>(
    &self,
    f: F
) -> SignalHandlerId where
    P: IsA<Aggregator>, 
[src]

Loading content...

Implementors

impl<O: IsA<Aggregator>> AggregatorExtManual for O[src]

Loading content...