Trait gstreamer_base::prelude::PipelineExt[][src]

pub trait PipelineExt {
    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<'a, P, Q>(&self, clock: Q)
    where
        P: 'a + IsA<Clock>,
        Q: Into<Option<&'a P>>
;
fn connect_property_auto_flush_bus_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Send + Sync + Fn(&Self)
;
fn connect_property_delay_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Send + Sync + Fn(&Self)
;
fn connect_property_latency_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Send + Sync + Fn(&Self)
; }

Required Methods

Implementors