Trait gstreamer::PipelineExt[][src]

pub trait PipelineExt: 'static {
    fn auto_clock(&self);
fn get_auto_flush_bus(&self) -> bool;
fn get_delay(&self) -> ClockTime;
fn get_latency(&self) -> ClockTime;
fn get_pipeline_clock(&self) -> Option<Clock>;
fn set_auto_flush_bus(&self, auto_flush: bool);
fn set_delay(&self, delay: ClockTime);
fn set_latency(&self, latency: ClockTime);
fn use_clock<P: IsA<Clock>>(&self, clock: Option<&P>);
fn connect_property_auto_flush_bus_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_delay_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_latency_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn auto_clock(&self)[src]

fn get_auto_flush_bus(&self) -> bool[src]

fn get_delay(&self) -> ClockTime[src]

fn get_latency(&self) -> ClockTime[src]

fn get_pipeline_clock(&self) -> Option<Clock>[src]

fn set_auto_flush_bus(&self, auto_flush: bool)[src]

fn set_delay(&self, delay: ClockTime)[src]

fn set_latency(&self, latency: ClockTime)[src]

fn use_clock<P: IsA<Clock>>(&self, clock: Option<&P>)[src]

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

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

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

Loading content...

Implementors

impl<O: IsA<Pipeline>> PipelineExt for O[src]

Loading content...