Commit ec89ce5a authored by Max Kellermann's avatar Max Kellermann

decoder/mp4ff: support tag "album artist"

We already supported "albumartist", but it seems some folks also use "album artist" (with a space).
parent 34415bf0
......@@ -2,7 +2,7 @@ ver 0.15.11 (2010/??/??)
* tags:
- ape: support album artist
* decoders:
- mp4ff: support tags "albumartist", "band"
- mp4ff: support tags "album artist", "albumartist", "band"
- mikmod: fix memory leak
* playlist: emit IDLE_OPTIONS when resetting single mode
* listen: make get_remote_uid() work on BSD
......
......@@ -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",
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment