diff options
author | Max Kellermann <max@duempel.org> | 2013-01-05 02:05:50 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-05 02:40:29 +0100 |
commit | 46ed91b53d4ee6df3f9b98bcfb4e36a97420b885 (patch) | |
tree | 2b1bfed19c42545822dcc524edaaadf11c1fc94f /test/dump_playlist.cxx | |
parent | 73f6fc428a2d9b58564f0dabdbc59080a731ed5c (diff) | |
download | mpd-46ed91b53d4ee6df3f9b98bcfb4e36a97420b885.tar.gz mpd-46ed91b53d4ee6df3f9b98bcfb4e36a97420b885.tar.xz mpd-46ed91b53d4ee6df3f9b98bcfb4e36a97420b885.zip |
DecoderAPI: _replay_gain() returns void
Let the function decoder_replay_gain() update
decoder_control::replay_gain_db instead of letting each decoder plugin
take care for that.
Diffstat (limited to '')
-rw-r--r-- | test/dump_playlist.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/dump_playlist.cxx b/test/dump_playlist.cxx index 427052b6c..7d4aa96e6 100644 --- a/test/dump_playlist.cxx +++ b/test/dump_playlist.cxx @@ -113,7 +113,7 @@ decoder_tag(G_GNUC_UNUSED struct decoder *decoder, return DECODE_COMMAND_NONE; } -float +void decoder_replay_gain(G_GNUC_UNUSED struct decoder *decoder, const struct replay_gain_info *replay_gain_info) { @@ -127,13 +127,10 @@ decoder_replay_gain(G_GNUC_UNUSED struct decoder *decoder, if (replay_gain_tuple_defined(tuple)) g_printerr("replay_gain[track]: gain=%f peak=%f\n", tuple->gain, tuple->peak); - - return 0.0; } void decoder_mixramp(G_GNUC_UNUSED struct decoder *decoder, - G_GNUC_UNUSED float replay_gain_db, char *mixramp_start, char *mixramp_end) { g_free(mixramp_start); |