Trait gstreamer::prelude::PadExt [−][src]
pub trait PadExt: 'static {}Show methods
fn activate_mode(
&self,
mode: PadMode,
active: bool
) -> Result<(), BoolError>; fn can_link<P: IsA<Pad>>(&self, sinkpad: &P) -> bool; fn check_reconfigure(&self) -> bool; fn create_stream_id<P: IsA<Element>>(
&self,
parent: &P,
stream_id: Option<&str>
) -> GString; fn forward<P: FnMut(&Pad) -> bool>(&self, forward: P) -> bool; fn allowed_caps(&self) -> Option<Caps>; fn current_caps(&self) -> Option<Caps>; fn direction(&self) -> PadDirection; fn last_flow_result(&self) -> Result<FlowSuccess, FlowError>; fn offset(&self) -> i64; fn pad_template(&self) -> Option<PadTemplate>; fn pad_template_caps(&self) -> Caps; fn parent_element(&self) -> Option<Element>; fn peer(&self) -> Option<Pad>; fn single_internal_link(&self) -> Option<Pad>; fn sticky_event(&self, event_type: EventType, idx: u32) -> Option<Event>; fn stream(&self) -> Option<Stream>; fn stream_id(&self) -> Option<GString>; fn task_state(&self) -> TaskState; fn has_current_caps(&self) -> bool; fn is_active(&self) -> bool; fn is_blocked(&self) -> bool; fn is_blocking(&self) -> bool; fn is_linked(&self) -> bool; 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 link_maybe_ghosting<P: IsA<Pad>>(
&self,
sink: &P
) -> Result<(), BoolError>; fn link_maybe_ghosting_full<P: IsA<Pad>>(
&self,
sink: &P,
flags: PadLinkCheck
) -> Result<(), BoolError>; fn mark_reconfigure(&self); fn needs_reconfigure(&self) -> bool; fn pause_task(&self) -> Result<(), BoolError>; fn peer_query_accept_caps(&self, caps: &Caps) -> bool; fn peer_query_caps(&self, filter: Option<&Caps>) -> Caps; fn query_accept_caps(&self, caps: &Caps) -> bool; fn query_caps(&self, filter: Option<&Caps>) -> Caps; fn set_active(&self, active: bool) -> Result<(), BoolError>; fn set_offset(&self, offset: i64); fn stop_task(&self) -> Result<(), BoolError>; fn store_sticky_event(
&self,
event: &Event
) -> Result<FlowSuccess, FlowError>; fn unlink<P: IsA<Pad>>(&self, sinkpad: &P) -> Result<(), BoolError>; fn use_fixed_caps(&self); fn caps(&self) -> Option<Caps>; fn connect_linked<F: Fn(&Self, &Pad) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId; fn connect_unlinked<F: Fn(&Self, &Pad) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId; fn connect_caps_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId; fn connect_offset_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId;
Expand description
Required methods
Activates or deactivates the given pad in mode
via dispatching to the
pad’s activatemodefunc. For use from within pad activation functions only.
If you don’t know what this is, you probably don’t want to call it.
mode
the requested activation mode
active
whether or not the pad should be active.
Returns
true
if the operation was successful.
MT safe.
fn check_reconfigure(&self) -> bool
[src]
fn check_reconfigure(&self) -> bool
[src]Check and clear the PadFlags::NEED_RECONFIGURE
flag on self
and return true
if the flag was set.
Returns
true
is the GST_PAD_FLAG_NEED_RECONFIGURE flag was set on self
.
Creates a stream-id for the source Pad
self
by combining the
upstream information with the optional stream_id
of the stream
of self
. self
must have a parent Element
and which must have zero
or one sinkpad. stream_id
can only be None
if the parent element
of self
has only a single source pad.
This function generates an unique stream-id by getting the upstream
stream-start event stream ID and appending stream_id
to it. If the
element has no sinkpad it will generate an upstream stream-id by
doing an URI query on the element and in the worst case just uses
a random number. Source elements that don’t implement the URI
handler interface should ideally generate a unique, deterministic
stream-id manually instead.
Since stream IDs are sorted alphabetically, any numbers in the
stream ID should be printed with a fixed number of characters,
preceded by 0’s, such as by using the format `03u instead of \
u`.
parent
Parent Element
of self
stream_id
The stream-id
Returns
A stream-id for self
. g_free()
after usage.
fn allowed_caps(&self) -> Option<Caps>
[src]
fn allowed_caps(&self) -> Option<Caps>
[src]Gets the capabilities of the allowed media types that can flow through
self
and its peer.
The allowed capabilities is calculated as the intersection of the results of
calling query_caps()
on self
and its peer. The caller owns a reference
on the resulting caps.
Returns
the allowed Caps
of the
pad link. Unref the caps when you no longer need it. This
function returns None
when self
has no peer.
MT safe.
fn current_caps(&self) -> Option<Caps>
[src]
fn current_caps(&self) -> Option<Caps>
[src]Gets the capabilities currently configured on self
with the last
EventType::Caps
event.
Returns
the current caps of the pad with
incremented ref-count or None
when pad has no caps. Unref after usage.
fn direction(&self) -> PadDirection
[src]
fn direction(&self) -> PadDirection
[src]Gets the direction of the pad. The direction of the pad is decided at construction time so this function does not take the LOCK.
Returns
the PadDirection
of the pad.
MT safe.
fn last_flow_result(&self) -> Result<FlowSuccess, FlowError>
[src]
fn last_flow_result(&self) -> Result<FlowSuccess, FlowError>
[src]Gets the FlowReturn
return from the last data passed by this pad.
Get the offset applied to the running time of self
. self
has to be a source
pad.
Returns
the offset.
fn pad_template(&self) -> Option<PadTemplate>
[src]
fn pad_template(&self) -> Option<PadTemplate>
[src]Gets the template for self
.
Returns
the PadTemplate
from which
this pad was instantiated, or None
if this pad has no
template. Unref after usage.
fn pad_template_caps(&self) -> Caps
[src]
fn pad_template_caps(&self) -> Caps
[src]fn parent_element(&self) -> Option<Element>
[src]
fn parent_element(&self) -> Option<Element>
[src]fn single_internal_link(&self) -> Option<Pad>
[src]
fn single_internal_link(&self) -> Option<Pad>
[src]v1_18
only.v1_10
only.Returns the current Stream
for the self
, or None
if none has been
set yet, i.e. the pad has not received a stream-start event yet.
This is a convenience wrapper around sticky_event()
and
gst_event_parse_stream()
.
Returns
the current Stream
for self
, or None
.
unref the returned stream when no longer needed.
Returns the current stream-id for the self
, or None
if none has been
set yet, i.e. the pad has not received a stream-start event yet.
This is a convenience wrapper around sticky_event()
and
gst_event_parse_stream_start()
.
The returned stream-id string should be treated as an opaque string, its contents should not be interpreted.
Returns
a newly-allocated copy of the stream-id for
self
, or None
. g_free()
the returned string when no longer
needed.
fn task_state(&self) -> TaskState
[src]
fn task_state(&self) -> TaskState
[src]v1_12
only.Get self
task state. If no task is currently
set, TaskState::Stopped
is returned.
Returns
The current state of self
’s task.
fn has_current_caps(&self) -> bool
[src]
fn has_current_caps(&self) -> bool
[src]Check if self
has caps set on it with a EventType::Caps
event.
Returns
true
when self
has caps associated with it.
fn is_blocked(&self) -> bool
[src]
fn is_blocked(&self) -> bool
[src]Checks if the pad is blocked or not. This function returns the
last requested state of the pad. It is not certain that the pad
is actually blocking at this point (see is_blocking()
).
Returns
true
if the pad is blocked.
MT safe.
fn is_blocking(&self) -> bool
[src]
fn is_blocking(&self) -> bool
[src]fn link<P: IsA<Pad>>(&self, sinkpad: &P) -> Result<PadLinkSuccess, PadLinkError>
[src]
fn link<P: IsA<Pad>>(&self, sinkpad: &P) -> Result<PadLinkSuccess, PadLinkError>
[src]fn link_full<P: IsA<Pad>>(
&self,
sinkpad: &P,
flags: PadLinkCheck
) -> Result<PadLinkSuccess, PadLinkError>
[src]
fn link_full<P: IsA<Pad>>(
&self,
sinkpad: &P,
flags: PadLinkCheck
) -> Result<PadLinkSuccess, PadLinkError>
[src]Links the source pad and the sink pad.
This variant of gst_pad_link
provides a more granular control on the
checks being done when linking. While providing some considerable speedups
the caller of this method must be aware that wrong usage of those flags
can cause severe issues. Refer to the documentation of PadLinkCheck
for more information.
MT Safe.
sinkpad
the sink Pad
to link.
flags
the checks to validate when linking
Returns
A result code indicating if the connection worked or what went wrong.
v1_10
only.Links self
to sink
, creating any GhostPad
’s in between as necessary.
This is a convenience function to save having to create and add intermediate
GhostPad
’s as required for linking across Bin
boundaries.
If self
or sink
pads don’t have parent elements or do not share a common
ancestor, the link will fail.
sink
a Pad
Returns
whether the link succeeded.
fn link_maybe_ghosting_full<P: IsA<Pad>>(
&self,
sink: &P,
flags: PadLinkCheck
) -> Result<(), BoolError>
[src]
fn link_maybe_ghosting_full<P: IsA<Pad>>(
&self,
sink: &P,
flags: PadLinkCheck
) -> Result<(), BoolError>
[src]v1_10
only.Links self
to sink
, creating any GhostPad
’s in between as necessary.
This is a convenience function to save having to create and add intermediate
GhostPad
’s as required for linking across Bin
boundaries.
If self
or sink
pads don’t have parent elements or do not share a common
ancestor, the link will fail.
Calling link_maybe_ghosting_full()
with
flags
== PadLinkCheck::DEFAULT
is the recommended way of linking
pads with safety checks applied.
sink
a Pad
flags
some PadLinkCheck
flags
Returns
whether the link succeeded.
fn mark_reconfigure(&self)
[src]
fn mark_reconfigure(&self)
[src]Mark a pad for needing reconfiguration. The next call to
check_reconfigure()
will return true
after this call.
fn needs_reconfigure(&self) -> bool
[src]
fn needs_reconfigure(&self) -> bool
[src]Check the PadFlags::NEED_RECONFIGURE
flag on self
and return true
if the flag was set.
Returns
true
is the GST_PAD_FLAG_NEED_RECONFIGURE flag is set on self
.
fn pause_task(&self) -> Result<(), BoolError>
[src]
fn pause_task(&self) -> Result<(), BoolError>
[src]fn peer_query_accept_caps(&self, caps: &Caps) -> bool
[src]
fn peer_query_accept_caps(&self, caps: &Caps) -> bool
[src]fn peer_query_caps(&self, filter: Option<&Caps>) -> Caps
[src]
fn peer_query_caps(&self, filter: Option<&Caps>) -> Caps
[src]Gets the capabilities of the peer connected to this pad. Similar to
query_caps()
.
When called on srcpads filter
contains the caps that
upstream could produce in the order preferred by upstream. When
called on sinkpads filter
contains the caps accepted by
downstream in the preferred order. filter
might be None
but
if it is not None
the returned caps will be a subset of filter
.
filter
Returns
the caps of the peer pad with incremented
ref-count. When there is no peer pad, this function returns filter
or,
when filter
is None
, ANY caps.
fn query_accept_caps(&self, caps: &Caps) -> bool
[src]
fn query_accept_caps(&self, caps: &Caps) -> bool
[src]fn query_caps(&self, filter: Option<&Caps>) -> Caps
[src]
fn query_caps(&self, filter: Option<&Caps>) -> Caps
[src]Gets the capabilities this pad can produce or consume.
Note that this method doesn’t necessarily return the caps set by sending a
gst_event_new_caps()
- use current_caps()
for that instead.
gst_pad_query_caps returns all possible caps a pad can operate with, using
the pad’s CAPS query function, If the query fails, this function will return
filter
, if not None
, otherwise ANY.
When called on sinkpads filter
contains the caps that
upstream could produce in the order preferred by upstream. When
called on srcpads filter
contains the caps accepted by
downstream in the preferred order. filter
might be None
but
if it is not None
the returned caps will be a subset of filter
.
Note that this function does not return writable Caps
, use
gst_caps_make_writable()
before modifying the caps.
filter
Returns
the caps of the pad with incremented ref-count.
Activates or deactivates the given pad. Normally called from within core state change functions.
If active
, makes sure the pad is active. If it is already active, either in
push or pull mode, just return. Otherwise dispatches to the pad’s activate
function to perform the actual activation.
If not active
, calls activate_mode()
with the pad’s current mode
and a false
argument.
active
whether or not the pad should be active.
Returns
true
if the operation was successful.
MT safe.
fn set_offset(&self, offset: i64)
[src]
fn set_offset(&self, offset: i64)
[src]Stop the task of self
. This function will also make sure that the
function executed by the task will effectively stop if not called
from the GstTaskFunction.
This function will deadlock if called from the GstTaskFunction of
the task. Use gst_task_pause()
instead.
Regardless of whether the pad has a task, the stream lock is acquired and released so as to ensure that streaming through this pad has finished.
Returns
fn store_sticky_event(&self, event: &Event) -> Result<FlowSuccess, FlowError>
[src]
fn store_sticky_event(&self, event: &Event) -> Result<FlowSuccess, FlowError>
[src]Store the sticky event
on self
event
a Event
Returns
FlowReturn::Ok
on success, FlowReturn::Flushing
when the pad
was flushing or FlowReturn::Eos
when the pad was EOS.
fn use_fixed_caps(&self)
[src]
fn use_fixed_caps(&self)
[src]A helper function you can use that sets the FIXED_CAPS flag This way the default CAPS query will always return the negotiated caps or in case the pad is not negotiated, the padtemplate caps.
The negotiated caps are the caps of the last CAPS event that passed on the pad. Use this function on a pad that, once it negotiated to a CAPS, cannot be renegotiated to something else.
fn connect_linked<F: Fn(&Self, &Pad) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]
fn connect_linked<F: Fn(&Self, &Pad) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]fn connect_unlinked<F: Fn(&Self, &Pad) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]
fn connect_unlinked<F: Fn(&Self, &Pad) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]Signals that a pad has been unlinked from the peer pad.
peer
the peer pad that has been disconnected
fn connect_caps_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]fn connect_offset_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]Implementors
v1_18
only.v1_12
only.fn link_full<P: IsA<Pad>>(
&self,
sinkpad: &P,
flags: PadLinkCheck
) -> Result<PadLinkSuccess, PadLinkError>
[src]v1_10
only.fn link_maybe_ghosting_full<P: IsA<Pad>>(
&self,
sink: &P,
flags: PadLinkCheck
) -> Result<(), BoolError>
[src]
fn link_maybe_ghosting_full<P: IsA<Pad>>(
&self,
sink: &P,
flags: PadLinkCheck
) -> Result<(), BoolError>
[src]v1_10
only.fn connect_unlinked<F: Fn(&Self, &Pad) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]fn connect_offset_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]