From 686d8bbe6956b53000228c3754a278e7805467fc Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 12 Feb 2012 18:25:10 +0100 Subject: tag_handler: add new handler that updates has_playlist --- src/tag_handler.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/tag_handler.c') diff --git a/src/tag_handler.c b/src/tag_handler.c index 32de7650d..316715e87 100644 --- a/src/tag_handler.c +++ b/src/tag_handler.c @@ -20,6 +20,8 @@ #include "config.h" #include "tag_handler.h" +#include + static void add_tag_duration(unsigned seconds, void *ctx) { @@ -41,3 +43,18 @@ const struct tag_handler add_tag_handler = { .tag = add_tag_tag, }; +static void +full_tag_pair(const char *name, G_GNUC_UNUSED const char *value, void *ctx) +{ + struct tag *tag = ctx; + + if (g_ascii_strcasecmp(name, "cuesheet") == 0) + tag->has_playlist = true; +} + +const struct tag_handler full_tag_handler = { + .duration = add_tag_duration, + .tag = add_tag_tag, + .pair = full_tag_pair, +}; + -- cgit v1.2.3