diff options
author | Max Kellermann <max@duempel.org> | 2010-06-30 21:55:03 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-06-30 21:55:03 +0200 |
commit | ec89ce5a8a3a609c5ecd725560304c9686726fa7 (patch) | |
tree | 943cd33836fa41b16ebb8dfa662dcc94fe5f1c92 /src | |
parent | 34415bf0b60738b22099023af5cd2cd1d202bf80 (diff) | |
download | mpd-ec89ce5a8a3a609c5ecd725560304c9686726fa7.tar.gz mpd-ec89ce5a8a3a609c5ecd725560304c9686726fa7.tar.xz mpd-ec89ce5a8a3a609c5ecd725560304c9686726fa7.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 'src')
-rw-r--r-- | src/decoder/mp4ff_plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/decoder/mp4ff_plugin.c b/src/decoder/mp4ff_plugin.c index d34080493..d5afe084b 100644 --- a/src/decoder/mp4ff_plugin.c +++ b/src/decoder/mp4ff_plugin.c @@ -341,6 +341,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_ITEM_ALBUM_ARTIST] = "album artist", [TAG_ITEM_COMPOSER] = "writer", [TAG_ITEM_PERFORMER] = "band", }; |