Struct AVFilterInOut
#[repr(C)]pub struct AVFilterInOut {
pub name: *mut i8,
pub filter_ctx: *mut AVFilterContext,
pub pad_idx: i32,
pub next: *mut AVFilterInOut,
}
Expand description
A linked-list of the inputs/outputs of the filter chain.
This is mainly useful for avfilter_graph_parse() / avfilter_graph_parse2(), where it is used to communicate open (unlinked) inputs and outputs from and to the caller. This struct specifies, per each not connected pad contained in the graph, the filter context and the pad index required for establishing a link.
Fields§
§name: *mut i8
unique name for this input/output in the list
filter_ctx: *mut AVFilterContext
filter context associated to this input/output
pad_idx: i32
index of the filt_ctx pad to use for linking
next: *mut AVFilterInOut
next input/input in the list, NULL if this is the last
Trait Implementations§
§impl Clone for AVFilterInOut
impl Clone for AVFilterInOut
§fn clone(&self) -> AVFilterInOut
fn clone(&self) -> AVFilterInOut
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for AVFilterInOut
impl Debug for AVFilterInOut
impl Copy for AVFilterInOut
Auto Trait Implementations§
impl Freeze for AVFilterInOut
impl RefUnwindSafe for AVFilterInOut
impl !Send for AVFilterInOut
impl !Sync for AVFilterInOut
impl Unpin for AVFilterInOut
impl UnwindSafe for AVFilterInOut
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more