VLC 4.0.0-dev
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
vlc_replay_gain.h
Go to the documentation of this file.
1/*****************************************************************************
2 * vlc_replay_gain.h : common replay gain code
3 *****************************************************************************
4 * Copyright © 2002-2004 VLC authors and VideoLAN
5 * Copyright © 2011-2012 Rémi Denis-Courmont
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this program; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20 *****************************************************************************/
21
22#ifndef VLC_REPLAY_GAIN_H
23#define VLC_REPLAY_GAIN_H 1
24
25#include <vlc_common.h>
26
27/**
28 * \file vlc_replay_gain.h
29 * \defgroup replay_gain Replay Gain
30 * \ingroup input
31 * Functions to read replay gain tags.
32 *
33 * @{
34 */
35
36/** Index for track values */
37#define AUDIO_REPLAY_GAIN_TRACK (0)
38/** Index for album values */
39#define AUDIO_REPLAY_GAIN_ALBUM (1)
40/** Number of replay gain types */
41#define AUDIO_REPLAY_GAIN_MAX (2)
43/**
44 * Audio replay gain
45 */
46typedef struct
48 bool pb_reference_loudness; /**< true if we have the reference loudness */
49 float pf_reference_loudness; /**< reference loudness in LUFS */
50 bool pb_gain[AUDIO_REPLAY_GAIN_MAX]; /**< true if we have the gain value */
51 float pf_gain[AUDIO_REPLAY_GAIN_MAX]; /**< gain value in dB */
52 bool pb_peak[AUDIO_REPLAY_GAIN_MAX]; /**< true if we have the peak value */
53 float pf_peak[AUDIO_REPLAY_GAIN_MAX]; /**< peak value where 1.0 means full sample value */
55
56/**
57 * Extracts replay gain info from metadata and copies it into a replay gain structure.
58 * Supports both capitalized and lowercase metadata tags.
59 *
60 * \param p_dst Destination replay gain structure to fill
61 * \param p_meta Metadata structure to extract values from
62 * \return VLC_SUCCESS if either an album or track gain was found,
63 * VLC_EGENERIC if no gain was found,
64 * VLC_EINVAL if either argument is null
65 */
67
68/**
69 * Calculates the replay gain multiplier according to the Replay Gain 2.0 Specification.
70 * User preferences control mode, pre-amp, default gain, and peak protection.
71 *
72 * \param obj calling vlc object
73 * \param p_rg replay gain structure
74 * \return linear gain multiplier
75 */
77
78/**
79 * Merges replay gain structures
80 *
81 * Only copies gain/peak/reference loudness values that are:
82 * - Set in the source
83 * - Not set in the destination
84 *
85 * \param p_dst Destination replay gain structure
86 * \param p_src Source replay gain structure
87 */
88static inline void replay_gain_Merge( audio_replay_gain_t *p_dst, const audio_replay_gain_t *p_src )
90 if( !p_dst || !p_src )
91 return;
92
93 if( !p_dst->pb_reference_loudness && p_src->pb_reference_loudness )
94 {
97 }
98
99 for( size_t i = 0; i < AUDIO_REPLAY_GAIN_MAX; i++ )
100 {
101 if( !p_dst->pb_gain[i] && p_src->pb_gain[i] )
102 {
103 p_dst->pb_gain[i] = p_src->pb_gain[i];
104 p_dst->pf_gain[i] = p_src->pf_gain[i];
105 }
106 if( !p_dst->pb_peak[i] && p_src->pb_peak[i] )
107 {
108 p_dst->pb_peak[i] = p_src->pb_peak[i];
109 p_dst->pf_peak[i] = p_src->pf_peak[i];
110 }
111 }
112}
113
114/**
115 * Compares two replay gain structures
116 *
117 * \param p_a First replay gain structure
118 * \param p_b Second replay gain structure
119 * \return true if any gain/peak/reference loudness values or their validity flags differ
120 */
121static inline bool replay_gain_Compare( const audio_replay_gain_t *p_a, const audio_replay_gain_t *p_b )
123 if( !p_a || !p_b )
124 return true;
125
128 return true;
129
130 for( size_t i = 0; i < AUDIO_REPLAY_GAIN_MAX; i++ )
131 {
132 if( p_a->pb_gain[i] != p_b->pb_gain[i] ||
133 p_a->pb_peak[i] != p_b->pb_peak[i] )
134 return true;
135
136 if( ( p_a->pb_gain[i] && p_a->pf_gain[i] != p_b->pf_gain[i] ) ||
137 ( p_a->pb_peak[i] && p_a->pf_peak[i] != p_b->pf_peak[i] ) )
138 return true;
139 }
140 return false;
141}
142
143/**
144 * Reset replay gain structure values
145 *
146 * \param p_dst Replay gain structure
147 */
148static inline void replay_gain_Reset( audio_replay_gain_t *p_rg )
150 if( !p_rg )
151 return;
152
153 p_rg->pb_reference_loudness = false;
154 p_rg->pf_reference_loudness = 0.f;
155
156 for( size_t i = 0; i < AUDIO_REPLAY_GAIN_MAX; i++ )
157 {
158 p_rg->pb_gain[i] = false;
159 p_rg->pf_gain[i] = 0.f;
160
161 p_rg->pb_peak[i] = false;
162 p_rg->pf_peak[i] = 0.f;
163 }
164}
165/** @} */
166#endif
#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
Definition meta.c:46
VLC object common members.
Definition vlc_objects.h:53
This file is a collection of common definitions and types.