AVReplayGain

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.

extern (C) @nogc nothrow
struct AVReplayGain {}

Members

Variables

album_gain
int album_gain;

Same as track_gain, but for the whole album.

album_peak
uint album_peak;

Same as track_peak, but for the whole album,

track_gain
int track_gain;

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

track_peak
uint track_peak;

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

Meta