Trait gst_plugin::base_src::BaseSrcBase [−][src]
pub unsafe trait BaseSrcBase: IsA<Element> + IsA<BaseSrc> + ObjectType { fn parent_create(
&self,
offset: u64,
length: u32
) -> Result<Buffer, FlowReturn> { ... } fn parent_do_seek(&self, segment: &mut Segment) -> bool { ... } fn parent_query(&self, query: &mut QueryRef) -> bool { ... } fn parent_event(&self, event: &Event) -> bool { ... } fn parent_get_caps(&self, filter: Option<&CapsRef>) -> Option<Caps> { ... } fn parent_negotiate(&self) -> bool { ... } fn parent_set_caps(&self, caps: &CapsRef) -> bool { ... } fn parent_fixate(&self, caps: Caps) -> Caps { ... } }
Provided Methods
fn parent_create(&self, offset: u64, length: u32) -> Result<Buffer, FlowReturn>
fn parent_do_seek(&self, segment: &mut Segment) -> bool
fn parent_query(&self, query: &mut QueryRef) -> bool
fn parent_event(&self, event: &Event) -> bool
fn parent_get_caps(&self, filter: Option<&CapsRef>) -> Option<Caps>
fn parent_negotiate(&self) -> bool
fn parent_set_caps(&self, caps: &CapsRef) -> bool
fn parent_fixate(&self, caps: Caps) -> Caps
Implementors
impl<T: IsA<Element> + IsA<BaseSrc> + ObjectType> BaseSrcBase for T