[][src]Trait gstreamer::PadExtManual

pub trait PadExtManual: 'static {
    fn add_probe<F>(&self, mask: PadProbeType, func: F) -> Option<PadProbeId>
    where
        F: Fn(&Self, &mut PadProbeInfo) -> PadProbeReturn + Send + Sync + 'static
;
fn remove_probe(&self, id: PadProbeId);
fn chain(&self, buffer: Buffer) -> Result<FlowSuccess, FlowError>;
fn push(&self, buffer: Buffer) -> Result<FlowSuccess, FlowError>;
fn chain_list(&self, list: BufferList) -> Result<FlowSuccess, FlowError>;
fn push_list(&self, list: BufferList) -> Result<FlowSuccess, FlowError>;
fn pull_range(&self, offset: u64, size: u32) -> Result<Buffer, FlowError>;
fn get_range(&self, offset: u64, size: u32) -> Result<Buffer, FlowError>;
fn peer_query(&self, query: &mut QueryRef) -> bool;
fn query(&self, query: &mut QueryRef) -> bool;
fn query_default<'a, P: IsA<Object> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        parent: Q,
        query: &mut QueryRef
    ) -> bool;
fn proxy_query_caps(&self, query: &mut QueryRef) -> bool;
fn proxy_query_accept_caps(&self, query: &mut QueryRef) -> bool;
fn event_default<'a, P: IsA<Object> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        parent: Q,
        event: Event
    ) -> bool;
fn push_event(&self, event: Event) -> bool;
fn send_event(&self, event: Event) -> bool;
fn get_last_flow_return(&self) -> Result<FlowSuccess, FlowError>;
fn iterate_internal_links(&self) -> Iterator<Pad>;
fn iterate_internal_links_default<'a, P: IsA<Object> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        parent: Q
    ) -> Iterator<Pad>;
fn link<P: IsA<Pad>>(
        &self,
        sinkpad: &P
    ) -> Result<PadLinkSuccess, PadLinkError>;
fn link_full<P: IsA<Pad>>(
        &self,
        sinkpad: &P,
        flags: PadLinkCheck
    ) -> Result<PadLinkSuccess, PadLinkError>;
fn stream_lock(&self) -> StreamLock;
fn set_activate_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>) -> Result<(), LoggableError> + Send + Sync + 'static
;
fn set_activatemode_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>, PadMode, bool) -> Result<(), LoggableError> + Send + Sync + 'static
;
fn set_chain_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>, Buffer) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static
;
fn set_chain_list_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>, BufferList) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static
;
fn set_event_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>, Event) -> bool + Send + Sync + 'static
;
fn set_event_full_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>, Event) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static
;
fn set_getrange_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>, u64, u32) -> Result<Buffer, FlowError> + Send + Sync + 'static
;
fn set_iterate_internal_links_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>) -> Iterator<Pad> + Send + Sync + 'static
;
fn set_link_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>, &Pad) -> Result<PadLinkSuccess, PadLinkError> + Send + Sync + 'static
;
fn set_query_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>, &mut QueryRef) -> bool + Send + Sync + 'static
;
fn set_unlink_function<F>(&self, func: F)
    where
        F: Fn(&Self, &Option<Object>) + Send + Sync + 'static
;
fn start_task<F: FnMut() + Send + 'static>(
        &self,
        func: F
    ) -> Result<(), BoolError>;
fn peer_query_convert<V: Into<GenericFormattedValue>, U: SpecificFormattedValue>(
        &self,
        src_val: V
    ) -> Option<U>;
fn peer_query_convert_generic<V: Into<GenericFormattedValue>>(
        &self,
        src_val: V,
        dest_format: Format
    ) -> Option<GenericFormattedValue>;
fn peer_query_duration<T: SpecificFormattedValue>(&self) -> Option<T>;
fn peer_query_duration_generic(
        &self,
        format: Format
    ) -> Option<GenericFormattedValue>;
fn peer_query_position<T: SpecificFormattedValue>(&self) -> Option<T>;
fn peer_query_position_generic(
        &self,
        format: Format
    ) -> Option<GenericFormattedValue>;
fn query_convert<V: Into<GenericFormattedValue>, U: SpecificFormattedValue>(
        &self,
        src_val: V
    ) -> Option<U>;
fn query_convert_generic<V: Into<GenericFormattedValue>>(
        &self,
        src_val: V,
        dest_format: Format
    ) -> Option<GenericFormattedValue>;
fn query_duration<T: SpecificFormattedValue>(&self) -> Option<T>;
fn query_duration_generic(
        &self,
        format: Format
    ) -> Option<GenericFormattedValue>;
fn query_position<T: SpecificFormattedValue>(&self) -> Option<T>;
fn query_position_generic(
        &self,
        format: Format
    ) -> Option<GenericFormattedValue>;
fn get_mode(&self) -> PadMode;
fn sticky_events_foreach<F: FnMut(Event) -> Result<Option<Event>, Option<Event>>>(
        &self,
        func: F
    );
fn store_sticky_event(
        &self,
        event: &Event
    ) -> Result<FlowSuccess, FlowError>; }

Required methods

fn add_probe<F>(&self, mask: PadProbeType, func: F) -> Option<PadProbeId> where
    F: Fn(&Self, &mut PadProbeInfo) -> PadProbeReturn + Send + Sync + 'static, 

fn remove_probe(&self, id: PadProbeId)

fn chain(&self, buffer: Buffer) -> Result<FlowSuccess, FlowError>

fn push(&self, buffer: Buffer) -> Result<FlowSuccess, FlowError>

fn chain_list(&self, list: BufferList) -> Result<FlowSuccess, FlowError>

fn push_list(&self, list: BufferList) -> Result<FlowSuccess, FlowError>

fn pull_range(&self, offset: u64, size: u32) -> Result<Buffer, FlowError>

fn get_range(&self, offset: u64, size: u32) -> Result<Buffer, FlowError>

fn peer_query(&self, query: &mut QueryRef) -> bool

fn query(&self, query: &mut QueryRef) -> bool

fn query_default<'a, P: IsA<Object> + 'a, Q: Into<Option<&'a P>>>(
    &self,
    parent: Q,
    query: &mut QueryRef
) -> bool

fn proxy_query_caps(&self, query: &mut QueryRef) -> bool

fn proxy_query_accept_caps(&self, query: &mut QueryRef) -> bool

fn event_default<'a, P: IsA<Object> + 'a, Q: Into<Option<&'a P>>>(
    &self,
    parent: Q,
    event: Event
) -> bool

fn push_event(&self, event: Event) -> bool

fn send_event(&self, event: Event) -> bool

fn get_last_flow_return(&self) -> Result<FlowSuccess, FlowError>

fn stream_lock(&self) -> StreamLock

fn set_activate_function<F>(&self, func: F) where
    F: Fn(&Self, &Option<Object>) -> Result<(), LoggableError> + Send + Sync + 'static, 

fn set_activatemode_function<F>(&self, func: F) where
    F: Fn(&Self, &Option<Object>, PadMode, bool) -> Result<(), LoggableError> + Send + Sync + 'static, 

fn set_chain_function<F>(&self, func: F) where
    F: Fn(&Self, &Option<Object>, Buffer) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static, 

fn set_chain_list_function<F>(&self, func: F) where
    F: Fn(&Self, &Option<Object>, BufferList) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static, 

fn set_event_function<F>(&self, func: F) where
    F: Fn(&Self, &Option<Object>, Event) -> bool + Send + Sync + 'static, 

fn set_event_full_function<F>(&self, func: F) where
    F: Fn(&Self, &Option<Object>, Event) -> Result<FlowSuccess, FlowError> + Send + Sync + 'static, 

fn set_getrange_function<F>(&self, func: F) where
    F: Fn(&Self, &Option<Object>, u64, u32) -> Result<Buffer, FlowError> + Send + Sync + 'static, 

fn set_query_function<F>(&self, func: F) where
    F: Fn(&Self, &Option<Object>, &mut QueryRef) -> bool + Send + Sync + 'static, 

fn start_task<F: FnMut() + Send + 'static>(
    &self,
    func: F
) -> Result<(), BoolError>

fn peer_query_convert<V: Into<GenericFormattedValue>, U: SpecificFormattedValue>(
    &self,
    src_val: V
) -> Option<U>

fn peer_query_convert_generic<V: Into<GenericFormattedValue>>(
    &self,
    src_val: V,
    dest_format: Format
) -> Option<GenericFormattedValue>

fn peer_query_duration<T: SpecificFormattedValue>(&self) -> Option<T>

fn peer_query_duration_generic(
    &self,
    format: Format
) -> Option<GenericFormattedValue>

fn peer_query_position<T: SpecificFormattedValue>(&self) -> Option<T>

fn peer_query_position_generic(
    &self,
    format: Format
) -> Option<GenericFormattedValue>

fn query_convert<V: Into<GenericFormattedValue>, U: SpecificFormattedValue>(
    &self,
    src_val: V
) -> Option<U>

fn query_convert_generic<V: Into<GenericFormattedValue>>(
    &self,
    src_val: V,
    dest_format: Format
) -> Option<GenericFormattedValue>

fn query_duration<T: SpecificFormattedValue>(&self) -> Option<T>

fn query_duration_generic(
    &self,
    format: Format
) -> Option<GenericFormattedValue>

fn query_position<T: SpecificFormattedValue>(&self) -> Option<T>

fn query_position_generic(
    &self,
    format: Format
) -> Option<GenericFormattedValue>

fn get_mode(&self) -> PadMode

fn sticky_events_foreach<F: FnMut(Event) -> Result<Option<Event>, Option<Event>>>(
    &self,
    func: F
)

fn store_sticky_event(&self, event: &Event) -> Result<FlowSuccess, FlowError>

Loading content...

Implementors

impl<O: IsA<Pad>> PadExtManual for O[src]

Loading content...