[][src]Struct ffmpeg_dev::sys::ChannelMapInfo

#[repr(C)]
pub struct ChannelMapInfo {
    pub channel_map: [c_int; 32],
    pub do_remap: c_int,
    pub channel_copy: [c_int; 32],
    pub do_copy: c_int,
    pub channel_zero: [c_int; 32],
    pub do_zero: c_int,
    pub input_map: [c_int; 32],
}

Fields

channel_map: [c_int; 32]

< source index of each output channel, -1 if not remapped

do_remap: c_int

< remap needed

channel_copy: [c_int; 32]

< dest index to copy from

do_copy: c_int

< copy needed

channel_zero: [c_int; 32]

< dest index to zero

do_zero: c_int

< zeroing needed

input_map: [c_int; 32]

< dest index of each input channel

Trait Implementations

impl Clone for ChannelMapInfo[src]

impl Copy for ChannelMapInfo[src]

impl Debug for ChannelMapInfo[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 = !

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.