#[repr(C)]pub struct AVFilterLink {Show 31 fields
pub src: *mut AVFilterContext,
pub srcpad: *mut AVFilterPad,
pub dst: *mut AVFilterContext,
pub dstpad: *mut AVFilterPad,
pub type_: AVMediaType,
pub w: c_int,
pub h: c_int,
pub sample_aspect_ratio: AVRational,
pub channel_layout: u64,
pub sample_rate: c_int,
pub format: c_int,
pub time_base: AVRational,
pub ch_layout: AVChannelLayout,
pub incfg: AVFilterFormatsConfig,
pub outcfg: AVFilterFormatsConfig,
pub init_state: AVFilterLink__bindgen_ty_1,
pub graph: *mut AVFilterGraph,
pub current_pts: i64,
pub current_pts_us: i64,
pub age_index: c_int,
pub frame_rate: AVRational,
pub min_samples: c_int,
pub max_samples: c_int,
pub frame_count_in: i64,
pub frame_count_out: i64,
pub sample_count_in: i64,
pub sample_count_out: i64,
pub frame_pool: *mut c_void,
pub frame_wanted_out: c_int,
pub hw_frames_ctx: *mut AVBufferRef,
pub reserved: [c_char; 61440],
}Fields§
§src: *mut AVFilterContext§srcpad: *mut AVFilterPad§dst: *mut AVFilterContext§dstpad: *mut AVFilterPad§type_: AVMediaType§w: c_int§h: c_int§sample_aspect_ratio: AVRational§channel_layout: u64§sample_rate: c_int§format: c_int§time_base: AVRational§ch_layout: AVChannelLayout§incfg: AVFilterFormatsConfig§outcfg: AVFilterFormatsConfig§init_state: AVFilterLink__bindgen_ty_1§graph: *mut AVFilterGraph§current_pts: i64§current_pts_us: i64§age_index: c_int§frame_rate: AVRational§min_samples: c_int§max_samples: c_int§frame_count_in: i64§frame_count_out: i64§sample_count_in: i64§sample_count_out: i64§frame_pool: *mut c_void§frame_wanted_out: c_int§hw_frames_ctx: *mut AVBufferRef§reserved: [c_char; 61440]Trait Implementations§
Source§impl Clone for AVFilterLink
impl Clone for AVFilterLink
Source§fn clone(&self) -> AVFilterLink
fn clone(&self) -> AVFilterLink
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AVFilterLink
Auto Trait Implementations§
impl !Send for AVFilterLink
impl !Sync for AVFilterLink
impl Freeze for AVFilterLink
impl RefUnwindSafe for AVFilterLink
impl Unpin for AVFilterLink
impl UnsafeUnpin for AVFilterLink
impl UnwindSafe for AVFilterLink
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