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.
This commit is contained in:
parent
cfcd84655c
commit
0aeec90590
2
NEWS
2
NEWS
|
@ -1,6 +1,8 @@
|
||||||
ver 0.15.11 (2010/??/??)
|
ver 0.15.11 (2010/??/??)
|
||||||
* tags:
|
* tags:
|
||||||
- ape: support album artist
|
- ape: support album artist
|
||||||
|
* decoders:
|
||||||
|
- mp4ff: support tags "albumartist", "band"
|
||||||
|
|
||||||
|
|
||||||
ver 0.15.10 (2010/05/30)
|
ver 0.15.10 (2010/05/30)
|
||||||
|
|
|
@ -344,11 +344,13 @@ static const char *const mp4ff_tag_names[TAG_NUM_OF_ITEM_TYPES] = {
|
||||||
[TAG_ITEM_TITLE] = "title",
|
[TAG_ITEM_TITLE] = "title",
|
||||||
[TAG_ITEM_ARTIST] = "artist",
|
[TAG_ITEM_ARTIST] = "artist",
|
||||||
[TAG_ITEM_ALBUM] = "album",
|
[TAG_ITEM_ALBUM] = "album",
|
||||||
|
[TAG_ITEM_ALBUM_ARTIST] = "albumartist",
|
||||||
[TAG_ITEM_TRACK] = "track",
|
[TAG_ITEM_TRACK] = "track",
|
||||||
[TAG_ITEM_DISC] = "disc",
|
[TAG_ITEM_DISC] = "disc",
|
||||||
[TAG_ITEM_GENRE] = "genre",
|
[TAG_ITEM_GENRE] = "genre",
|
||||||
[TAG_ITEM_DATE] = "date",
|
[TAG_ITEM_DATE] = "date",
|
||||||
[TAG_ITEM_COMPOSER] = "writer",
|
[TAG_ITEM_COMPOSER] = "writer",
|
||||||
|
[TAG_ITEM_PERFORMER] = "band",
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct tag *
|
static struct tag *
|
||||||
|
|
Loading…
Reference in New Issue