From 46ed91b53d4ee6df3f9b98bcfb4e36a97420b885 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 5 Jan 2013 02:05:50 +0100 Subject: 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. --- test/run_decoder.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'test/run_decoder.c') diff --git a/test/run_decoder.c b/test/run_decoder.c index c25e727ba..3da5216d5 100644 --- a/test/run_decoder.c +++ b/test/run_decoder.c @@ -139,7 +139,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) { @@ -153,13 +153,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); -- cgit v1.2.3