[][src]Enum stainless_ffmpeg_sys::AVDownmixType

#[repr(u32)]pub enum AVDownmixType {
    AV_DOWNMIX_TYPE_UNKNOWN,
    AV_DOWNMIX_TYPE_LORO,
    AV_DOWNMIX_TYPE_LTRT,
    AV_DOWNMIX_TYPE_DPLII,
    AV_DOWNMIX_TYPE_NB,
}

Possible downmix types.

Variants

AV_DOWNMIX_TYPE_UNKNOWN

< Not indicated.

AV_DOWNMIX_TYPE_LORO

< Lo/Ro 2-channel downmix (Stereo).

AV_DOWNMIX_TYPE_LTRT

< Lt/Rt 2-channel downmix, Dolby Surround compatible.

AV_DOWNMIX_TYPE_DPLII

< Lt/Rt 2-channel downmix, Dolby Pro Logic II compatible.

AV_DOWNMIX_TYPE_NB

< Number of downmix types. Not part of ABI.

Trait Implementations

impl Clone for AVDownmixType[src]

impl Copy for AVDownmixType[src]

impl Debug for AVDownmixType[src]

impl Eq for AVDownmixType[src]

impl Hash for AVDownmixType[src]

impl PartialEq<AVDownmixType> for AVDownmixType[src]

impl StructuralEq for AVDownmixType[src]

impl StructuralPartialEq for AVDownmixType[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.