decoder_control: remove MixRamp debug messages

These are confusing, and since MixRamp development has ceased, not
useful to anybody.
This commit is contained in:
Max Kellermann
2012-09-25 11:08:16 +02:00
parent c93a28c641
commit ba6ef53ef9
4 changed files with 4 additions and 10 deletions

View File

@@ -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);