Commit 017d61a1 authored by Max Kellermann's avatar Max Kellermann

decoder/mp4ff: support tags "albumartist", "band"

I'm not sure if mapping "band" to TAG_PERFORMER is correct, but it might be better than nothing.
parent 4028d03a
......@@ -38,6 +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"
* encoders:
- twolame: new encoder plugin based on libtwolame
- flac: new encoder plugin based on libFLAC
......
......@@ -341,11 +341,13 @@ static const char *const mp4ff_tag_names[TAG_NUM_OF_ITEM_TYPES] = {
[TAG_TITLE] = "title",
[TAG_ARTIST] = "artist",
[TAG_ALBUM] = "album",
[TAG_ALBUM_ARTIST] = "albumartist",
[TAG_TRACK] = "track",
[TAG_DISC] = "disc",
[TAG_GENRE] = "genre",
[TAG_DATE] = "date",
[TAG_COMPOSER] = "writer",
[TAG_PERFORMER] = "band",
};
static struct tag *
......
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