[−][src]Struct ffmpeg_dev::sys::AVFilterChannelLayouts
A list of supported channel layouts.
The list works the same as AVFilterFormats, except for the following differences:
- A list with all_layouts = 1 means all channel layouts with a known disposition; nb_channel_layouts must then be 0.
- A list with all_counts = 1 means all channel counts, with a known or unknown disposition; nb_channel_layouts must then be 0 and all_layouts 1.
- The list must not contain a layout with a known disposition and a channel count with unknown disposition with the same number of channels (e.g. AV_CH_LAYOUT_STEREO and FF_COUNT2LAYOUT(2).
Fields
channel_layouts: *mut u64
< list of channel layouts
nb_channel_layouts: c_int
< number of channel layouts
all_layouts: c_char
< accept any known channel layout
all_counts: c_char
< accept any channel layout or count
refcount: c_uint
< number of references to this list
refs: *mut *mut *mut AVFilterChannelLayouts
< references to this list
Trait Implementations
impl Clone for AVFilterChannelLayouts
[src]
fn clone(&self) -> AVFilterChannelLayouts
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for AVFilterChannelLayouts
[src]
impl Debug for AVFilterChannelLayouts
[src]
Auto Trait Implementations
impl RefUnwindSafe for AVFilterChannelLayouts
impl !Send for AVFilterChannelLayouts
impl !Sync for AVFilterChannelLayouts
impl Unpin for AVFilterChannelLayouts
impl UnwindSafe for AVFilterChannelLayouts
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,