aboutsummaryrefslogtreecommitdiff
path: root/test/read_tags.c
diff options
context:
space:
mode:
authorTim Phipps <mpd@phipps-hutton.freeserve.co.uk>2010-03-21 18:21:47 +0100
committerMax Kellermann <max@duempel.org>2010-03-21 18:21:47 +0100
commite7a515c8b11c643332406d60a13ab1fe06d2b226 (patch)
treeaa7179b453b6fe7b163d1b4b807157359cb436cf /test/read_tags.c
parente9b75d462c4d0ffee3b3b26582800ec4f657a333 (diff)
Add support for MixRamp tags
Adds mixrampdb and mixrampdelay commands. Reads MIXRAP_START and MIXRAMP_END tags from FLAC files and overlaps instead of crossfading.
Diffstat (limited to 'test/read_tags.c')
-rw-r--r--test/read_tags.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/read_tags.c b/test/read_tags.c
index 4f4b3d99..19e1a4eb 100644
--- a/test/read_tags.c
+++ b/test/read_tags.c
@@ -121,6 +121,14 @@ decoder_replay_gain(G_GNUC_UNUSED struct decoder *decoder,
{
}
+void
+decoder_mixramp(G_GNUC_UNUSED struct decoder *decoder,
+ char *mixramp_start, char *mixramp_end)
+{
+ g_free(mixramp_start);
+ g_free(mixramp_end);
+}
+
static void
print_tag(const struct tag *tag)
{