[][src]Trait gstreamer_base::prelude::BaseSinkExt

pub trait BaseSinkExt: 'static {
    pub fn get_blocksize(&self) -> u32;
pub fn get_drop_out_of_segment(&self) -> bool;
pub fn get_last_sample(&self) -> Option<Sample>;
pub fn get_latency(&self) -> ClockTime;
pub fn get_max_bitrate(&self) -> u64;
pub fn get_max_lateness(&self) -> i64;
pub fn get_processing_deadline(&self) -> ClockTime;
pub fn get_render_delay(&self) -> ClockTime;
pub fn get_stats(&self) -> Option<Structure>;
pub fn get_sync(&self) -> bool;
pub fn get_throttle_time(&self) -> u64;
pub fn get_ts_offset(&self) -> ClockTimeDiff;
pub fn is_async_enabled(&self) -> bool;
pub fn is_last_sample_enabled(&self) -> bool;
pub fn is_qos_enabled(&self) -> bool;
pub fn set_async_enabled(&self, enabled: bool);
pub fn set_blocksize(&self, blocksize: u32);
pub fn set_drop_out_of_segment(&self, drop_out_of_segment: bool);
pub fn set_last_sample_enabled(&self, enabled: bool);
pub fn set_max_bitrate(&self, max_bitrate: u64);
pub fn set_max_lateness(&self, max_lateness: i64);
pub fn set_processing_deadline(&self, processing_deadline: ClockTime);
pub fn set_qos_enabled(&self, enabled: bool);
pub fn set_render_delay(&self, delay: ClockTime);
pub fn set_sync(&self, sync: bool);
pub fn set_throttle_time(&self, throttle: u64);
pub fn set_ts_offset(&self, offset: ClockTimeDiff);
pub fn get_property_async(&self) -> bool;
pub fn set_property_async(&self, async: bool);
pub fn get_property_enable_last_sample(&self) -> bool;
pub fn set_property_enable_last_sample(&self, enable_last_sample: bool);
pub fn get_property_qos(&self) -> bool;
pub fn set_property_qos(&self, qos: bool);
pub fn connect_property_async_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_blocksize_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_enable_last_sample_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_last_sample_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_max_bitrate_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_max_lateness_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_processing_deadline_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_qos_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_render_delay_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_stats_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_sync_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_throttle_time_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
pub fn connect_property_ts_offset_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

pub fn get_blocksize(&self) -> u32[src]

pub fn get_drop_out_of_segment(&self) -> bool[src]

pub fn get_last_sample(&self) -> Option<Sample>[src]

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

pub fn get_max_bitrate(&self) -> u64[src]

pub fn get_max_lateness(&self) -> i64[src]

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

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

pub fn get_stats(&self) -> Option<Structure>[src]

pub fn get_sync(&self) -> bool[src]

pub fn get_throttle_time(&self) -> u64[src]

pub fn get_ts_offset(&self) -> ClockTimeDiff[src]

pub fn is_async_enabled(&self) -> bool[src]

pub fn is_last_sample_enabled(&self) -> bool[src]

pub fn is_qos_enabled(&self) -> bool[src]

pub fn set_async_enabled(&self, enabled: bool)[src]

pub fn set_blocksize(&self, blocksize: u32)[src]

pub fn set_drop_out_of_segment(&self, drop_out_of_segment: bool)[src]

pub fn set_last_sample_enabled(&self, enabled: bool)[src]

pub fn set_max_bitrate(&self, max_bitrate: u64)[src]

pub fn set_max_lateness(&self, max_lateness: i64)[src]

pub fn set_processing_deadline(&self, processing_deadline: ClockTime)[src]

pub fn set_qos_enabled(&self, enabled: bool)[src]

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

pub fn set_sync(&self, sync: bool)[src]

pub fn set_throttle_time(&self, throttle: u64)[src]

pub fn set_ts_offset(&self, offset: ClockTimeDiff)[src]

pub fn get_property_async(&self) -> bool[src]

pub fn set_property_async(&self, async: bool)[src]

pub fn get_property_enable_last_sample(&self) -> bool[src]

pub fn set_property_enable_last_sample(&self, enable_last_sample: bool)[src]

pub fn get_property_qos(&self) -> bool[src]

pub fn set_property_qos(&self, qos: bool)[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O: IsA<BaseSink>> BaseSinkExt for O[src]

Loading content...