Struct ffmpeg_sys_next::AVABufferSinkParams
source · [−]#[repr(C)]pub struct AVABufferSinkParams {
pub sample_fmts: *const AVSampleFormat,
pub channel_layouts: *const i64,
pub channel_counts: *const c_int,
pub all_channel_counts: c_int,
pub sample_rates: *mut c_int,
}Expand description
Struct to use for initializing an abuffersink context.
Fields
sample_fmts: *const AVSampleFormat< list of allowed sample formats, terminated by AV_SAMPLE_FMT_NONE
channel_layouts: *const i64< list of allowed channel layouts, terminated by -1
channel_counts: *const c_int< list of allowed channel counts, terminated by -1
all_channel_counts: c_int< if not 0, accept any channel count or layout
sample_rates: *mut c_int< list of allowed sample rates, terminated by -1
Trait Implementations
sourceimpl Clone for AVABufferSinkParams
impl Clone for AVABufferSinkParams
sourcefn clone(&self) -> AVABufferSinkParams
fn clone(&self) -> AVABufferSinkParams
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AVABufferSinkParams
impl Debug for AVABufferSinkParams
sourceimpl PartialEq<AVABufferSinkParams> for AVABufferSinkParams
impl PartialEq<AVABufferSinkParams> for AVABufferSinkParams
sourcefn eq(&self, other: &AVABufferSinkParams) -> bool
fn eq(&self, other: &AVABufferSinkParams) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AVABufferSinkParams) -> bool
fn ne(&self, other: &AVABufferSinkParams) -> bool
This method tests for !=.
impl Copy for AVABufferSinkParams
impl Eq for AVABufferSinkParams
impl StructuralEq for AVABufferSinkParams
impl StructuralPartialEq for AVABufferSinkParams
Auto Trait Implementations
impl RefUnwindSafe for AVABufferSinkParams
impl !Send for AVABufferSinkParams
impl !Sync for AVABufferSinkParams
impl Unpin for AVABufferSinkParams
impl UnwindSafe for AVABufferSinkParams
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more