From 9eb292c1e570826de53913a8132d90488a25bc9c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 25 Jun 2010 22:54:18 +0200 Subject: [PATCH] decoder/mp4ff: support tag "album artist" We already supported "albumartist", but it seems some folks also use "album artist" (with a space). --- NEWS | 2 +- src/decoder/mp4ff_decoder_plugin.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index b5b6e91ab..35a99e759 100644 --- a/NEWS +++ b/NEWS @@ -38,7 +38,7 @@ ver 0.16 (20??/??/??) - wavpack: activate 32 bit support - wavpack: allow more than 2 channels - mp4ff: rename plugin "mp4" to "mp4ff" - - mp4ff: support tags "albumartist", "band" + - mp4ff: support tags "album artist", "albumartist", "band" - mikmod: fix memory leak * encoders: - twolame: new encoder plugin based on libtwolame diff --git a/src/decoder/mp4ff_decoder_plugin.c b/src/decoder/mp4ff_decoder_plugin.c index 920e9fd37..d72fa02ac 100644 --- a/src/decoder/mp4ff_decoder_plugin.c +++ b/src/decoder/mp4ff_decoder_plugin.c @@ -350,6 +350,7 @@ mp4_decode(struct decoder *mpd_decoder, struct input_stream *input_stream) } static const char *const mp4ff_tag_names[TAG_NUM_OF_ITEM_TYPES] = { + [TAG_ALBUM_ARTIST] = "album artist", [TAG_COMPOSER] = "writer", [TAG_PERFORMER] = "band", };