22#ifndef VLC_REPLAY_GAIN_H
23#define VLC_REPLAY_GAIN_H 1
37#define AUDIO_REPLAY_GAIN_TRACK (0)
39#define AUDIO_REPLAY_GAIN_ALBUM (1)
41#define AUDIO_REPLAY_GAIN_MAX (2)
48 bool pb_reference_loudness;
49 float pf_reference_loudness;
90 if( !p_dst || !p_src )
#define VLC_API
Definition fourcc_gen.c:31
int vlc_replay_gain_CopyFromMeta(audio_replay_gain_t *p_dst, const vlc_meta_t *p_meta)
Extracts replay gain info from metadata and copies it into a replay gain structure.
Definition replay_gain.c:33
static void replay_gain_Reset(audio_replay_gain_t *p_rg)
Reset replay gain structure values.
Definition vlc_replay_gain.h:149
static bool replay_gain_Compare(const audio_replay_gain_t *p_a, const audio_replay_gain_t *p_b)
Compares two replay gain structures.
Definition vlc_replay_gain.h:122
float replay_gain_CalcMultiplier(vlc_object_t *obj, const audio_replay_gain_t *p_rg)
Calculates the replay gain multiplier according to the Replay Gain 2.0 Specification.
Definition replay_gain.c:118
static void replay_gain_Merge(audio_replay_gain_t *p_dst, const audio_replay_gain_t *p_src)
Merges replay gain structures.
Definition vlc_replay_gain.h:89
#define AUDIO_REPLAY_GAIN_MAX
Number of replay gain types.
Definition vlc_replay_gain.h:42
Audio replay gain.
Definition vlc_replay_gain.h:48
bool pb_gain[(2)]
true if we have the gain value
Definition vlc_replay_gain.h:51
bool pb_peak[(2)]
true if we have the peak value
Definition vlc_replay_gain.h:53
float pf_peak[(2)]
peak value where 1.0 means full sample value
Definition vlc_replay_gain.h:54
float pf_gain[(2)]
gain value in dB
Definition vlc_replay_gain.h:52
float pf_reference_loudness
reference loudness in LUFS
Definition vlc_replay_gain.h:50
bool pb_reference_loudness
true if we have the reference loudness
Definition vlc_replay_gain.h:49
VLC object common members.
Definition vlc_objects.h:53
This file is a collection of common definitions and types.