[][src]Struct stainless_ffmpeg_sys::AVReplayGain

#[repr(C)]pub struct AVReplayGain {
    pub track_gain: i32,
    pub track_peak: u32,
    pub album_gain: i32,
    pub album_peak: u32,
}

ReplayGain information (see http://wiki.hydrogenaudio.org/index.php?title=ReplayGain_1.0_specification). The size of this struct is a part of the public ABI.

Fields

track_gain: i32

Track replay gain in microbels (divide by 100000 to get the value in dB). Should be set to INT32_MIN when unknown.

track_peak: u32

Peak track amplitude, with 100000 representing full scale (but values may overflow). 0 when unknown.

album_gain: i32

Same as track_gain, but for the whole album.

album_peak: u32

Same as track_peak, but for the whole album,

Trait Implementations

impl Clone for AVReplayGain[src]

impl Copy for AVReplayGain[src]

impl Debug for AVReplayGain[src]

impl Eq for AVReplayGain[src]

impl PartialEq<AVReplayGain> for AVReplayGain[src]

impl StructuralEq for AVReplayGain[src]

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