aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_api.c
diff options
context:
space:
mode:
authorDaniel Seuthe <daniel+mpd@seuthe.org>2010-05-18 20:39:32 +0200
committerMax Kellermann <max@duempel.org>2010-05-18 20:39:32 +0200
commit733962db2fb6cd3dc17aaf6630414823f4cf84e3 (patch)
treee792c45e969537389404b820a13b0cdd3da64754 /src/decoder_api.c
parentf824ecdfa10beb7241f447674193e0e4a5ae8eb1 (diff)
decoder_api: return effective replay gain
Pay attention to the ReplayGain mode "auto" and the replay_gain_missing_preamp parameter inside of decoder_replay_gain().
Diffstat (limited to 'src/decoder_api.c')
-rw-r--r--src/decoder_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_api.c b/src/decoder_api.c
index a951b07c..60d28305 100644
--- a/src/decoder_api.c
+++ b/src/decoder_api.c
@@ -419,7 +419,7 @@ decoder_replay_gain(struct decoder *decoder,
if (REPLAY_GAIN_OFF != replay_gain_mode) {
return_db = 20.0 * log10f(
replay_gain_tuple_scale(
- &replay_gain_info->tuples[replay_gain_mode],
+ &replay_gain_info->tuples[replay_gain_get_real_mode()],
replay_gain_preamp));
}