diff options
author | Max Kellermann <max@duempel.org> | 2010-06-25 22:54:18 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-06-25 22:54:18 +0200 |
commit | 9eb292c1e570826de53913a8132d90488a25bc9c (patch) | |
tree | 486854f9b63628fca0479b5096c024e199aa543a /src/decoder | |
parent | 5216cfb3c8cc95d1f362f019c2176868949b224c (diff) | |
download | mpd-9eb292c1e570826de53913a8132d90488a25bc9c.tar.gz mpd-9eb292c1e570826de53913a8132d90488a25bc9c.tar.xz mpd-9eb292c1e570826de53913a8132d90488a25bc9c.zip |
decoder/mp4ff: support tag "album artist"
We already supported "albumartist", but it seems some folks also use
"album artist" (with a space).
Diffstat (limited to '')
-rw-r--r-- | src/decoder/mp4ff_decoder_plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
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", }; |