[][src]Struct ffmpeg_sys_next::AVABufferSinkParams

#[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,
}

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

impl Clone for AVABufferSinkParams[src]

impl Copy for AVABufferSinkParams[src]

impl Debug for AVABufferSinkParams[src]

impl Eq for AVABufferSinkParams[src]

impl PartialEq<AVABufferSinkParams> for AVABufferSinkParams[src]

impl StructuralEq for AVABufferSinkParams[src]

impl StructuralPartialEq for AVABufferSinkParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.