[][src]Struct ffav_sys::AVDownmixInfo

#[repr(C)]pub struct AVDownmixInfo {
    pub preferred_downmix_type: AVDownmixType,
    pub center_mix_level: f64,
    pub center_mix_level_ltrt: f64,
    pub surround_mix_level: f64,
    pub surround_mix_level_ltrt: f64,
    pub lfe_mix_level: f64,
}

This structure describes optional metadata relevant to a downmix procedure.

All fields are set by the decoder to the value indicated in the audio bitstream (if present), or to a "sane" default otherwise.

Fields

preferred_downmix_type: AVDownmixType

Type of downmix preferred by the mastering engineer.

center_mix_level: f64

Absolute scale factor representing the nominal level of the center channel during a regular downmix.

center_mix_level_ltrt: f64

Absolute scale factor representing the nominal level of the center channel during an Lt/Rt compatible downmix.

surround_mix_level: f64

Absolute scale factor representing the nominal level of the surround channels during a regular downmix.

surround_mix_level_ltrt: f64

Absolute scale factor representing the nominal level of the surround channels during an Lt/Rt compatible downmix.

lfe_mix_level: f64

Absolute scale factor representing the level at which the LFE data is mixed into L/R channels during downmixing.

Trait Implementations

impl Clone for AVDownmixInfo[src]

impl Copy for AVDownmixInfo[src]

impl Debug for AVDownmixInfo[src]

impl PartialEq<AVDownmixInfo> for AVDownmixInfo[src]

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