aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_decoder.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-09-09 19:17:22 +0200
committerMax Kellermann <max@duempel.org>2014-09-09 19:17:22 +0200
commit57068e526c3eae07e742cbdaa5c0e131720fb1d1 (patch)
tree2f696e631bdad3db155ae8c2996af8110b1aee43 /test/run_decoder.cxx
parentc14a00eec92074536591c05f0ac5486bf74980f9 (diff)
downloadmpd-57068e526c3eae07e742cbdaa5c0e131720fb1d1.tar.gz
mpd-57068e526c3eae07e742cbdaa5c0e131720fb1d1.tar.xz
mpd-57068e526c3eae07e742cbdaa5c0e131720fb1d1.zip
test/run_decoder: dump MixRamp data
Diffstat (limited to '')
-rw-r--r--test/run_decoder.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/run_decoder.cxx b/test/run_decoder.cxx
index 7db8dde22..3fbfc5521 100644
--- a/test/run_decoder.cxx
+++ b/test/run_decoder.cxx
@@ -175,8 +175,10 @@ decoder_replay_gain(gcc_unused Decoder &decoder,
}
void
-decoder_mixramp(gcc_unused Decoder &decoder, gcc_unused MixRampInfo &&mix_ramp)
+decoder_mixramp(gcc_unused Decoder &decoder, MixRampInfo &&mix_ramp)
{
+ fprintf(stderr, "MixRamp: start='%s' end='%s'\n",
+ mix_ramp.GetStart(), mix_ramp.GetEnd());
}
int main(int argc, char **argv)