aboutsummaryrefslogtreecommitdiff
path: root/src/tag_ape.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-02-11 19:24:51 +0100
committerMax Kellermann <max@duempel.org>2012-02-12 13:41:48 +0100
commitffea273a28179d2b5bbc24f967517bcf80940c63 (patch)
tree5891ed63a60ba0eed7c2b4433ea72f566f982822 /src/tag_ape.c
parent1783aac4384ccc53d9ad25c237d4286ccdbccbc0 (diff)
tag_handler: handle arbitrary name/value pairs
The new method pair() receives an arbitrary name/value pair. Support for this is being added to a few decoder plugins.
Diffstat (limited to 'src/tag_ape.c')
-rw-r--r--src/tag_ape.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tag_ape.c b/src/tag_ape.c
index 93d935b7..068a9aa6 100644
--- a/src/tag_ape.c
+++ b/src/tag_ape.c
@@ -49,6 +49,8 @@ tag_ape_import_item(unsigned long flags,
if ((flags & (0x3 << 1)) != 0)
return;
+ tag_handler_invoke_pair(handler, handler_ctx, key, value);
+
enum tag_type type = tag_ape_name_parse(key);
if (type == TAG_NUM_OF_ITEM_TYPES)
return;