Trait gstreamer_base::BaseTransformExt [−][src]
pub trait BaseTransformExt {
fn get_buffer_pool(&self) -> Option<BufferPool>;
fn is_in_place(&self) -> bool;
fn is_passthrough(&self) -> bool;
fn is_qos_enabled(&self) -> bool;
fn reconfigure_sink(&self);
fn reconfigure_src(&self);
fn set_gap_aware(&self, gap_aware: bool);
fn set_in_place(&self, in_place: bool);
fn set_passthrough(&self, passthrough: bool);
fn set_prefer_passthrough(&self, prefer_passthrough: bool);
fn set_qos_enabled(&self, enabled: bool);
fn update_qos(
&self,
proportion: f64,
diff: ClockTimeDiff,
timestamp: ClockTime
);
fn update_src_caps(&self, updated_caps: &Caps) -> bool;
fn get_property_qos(&self) -> bool;
fn set_property_qos(&self, qos: bool);
fn connect_property_qos_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId;
}Required Methods
fn get_buffer_pool(&self) -> Option<BufferPool>
fn is_in_place(&self) -> bool
fn is_passthrough(&self) -> bool
fn is_qos_enabled(&self) -> bool
fn reconfigure_sink(&self)
fn reconfigure_src(&self)
fn set_gap_aware(&self, gap_aware: bool)
fn set_in_place(&self, in_place: bool)
fn set_passthrough(&self, passthrough: bool)
fn set_prefer_passthrough(&self, prefer_passthrough: bool)
fn set_qos_enabled(&self, enabled: bool)
fn update_qos(&self, proportion: f64, diff: ClockTimeDiff, timestamp: ClockTime)
fn update_src_caps(&self, updated_caps: &Caps) -> bool
fn get_property_qos(&self) -> bool
fn set_property_qos(&self, qos: bool)
fn connect_property_qos_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
Implementors
impl<O: IsA<BaseTransform> + IsA<Object>> BaseTransformExt for O