aboutsummaryrefslogtreecommitdiff
path: root/src/decoder/mad_decoder_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-09-25 11:39:01 +0200
committerMax Kellermann <max@duempel.org>2012-09-25 11:39:01 +0200
commite2a574e2a00803f45ed6f60154f01dd2ccc8444a (patch)
tree7bb07fc285c00d01bd0d7fb1314c49ad39cb9232 /src/decoder/mad_decoder_plugin.c
parent1536b5a9d602688354648106ca8d0e34cac3c933 (diff)
parentba6ef53ef95dfd48ce0e5dd161b3199b431044ed (diff)
Merge branch 'v0.17.x'
Conflicts: src/locate.c
Diffstat (limited to 'src/decoder/mad_decoder_plugin.c')
-rw-r--r--src/decoder/mad_decoder_plugin.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/decoder/mad_decoder_plugin.c b/src/decoder/mad_decoder_plugin.c
index ec54e663..c1a0c4b0 100644
--- a/src/decoder/mad_decoder_plugin.c
+++ b/src/decoder/mad_decoder_plugin.c
@@ -365,11 +365,10 @@ static void mp3_parse_id3(struct mp3_data *data, size_t tagsize,
replay_gain_db = decoder_replay_gain(data->decoder, &rgi);
data->found_replay_gain = true;
}
- if (parse_id3_mixramp(&mixramp_start, &mixramp_end, id3_tag)) {
- g_debug("setting mixramp_tags");
+
+ if (parse_id3_mixramp(&mixramp_start, &mixramp_end, id3_tag))
decoder_mixramp(data->decoder, replay_gain_db,
mixramp_start, mixramp_end);
- }
}
id3_tag_delete(id3_tag);