tag_ape: support album artist

I took this tag name from a MusePack sample file I got from a user.
It is not documented in the APE specification:

 http://wiki.hydrogenaudio.org/index.php?title=APE_key

People seem to be using undocumented extensions to the specification
anyway, and the best we can do is attempt to support them.
This commit is contained in:
Max Kellermann 2010-05-30 22:29:48 +02:00
parent 026bd15872
commit 9328558fc7
2 changed files with 3 additions and 0 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
ver 0.15.11 (2010/??/??)
* tags:
- ape: support album artist
ver 0.15.10 (2010/05/30)

View File

@ -29,6 +29,7 @@ static const char *const ape_tag_names[] = {
[TAG_ITEM_TITLE] = "title",
[TAG_ITEM_ARTIST] = "artist",
[TAG_ITEM_ALBUM] = "album",
[TAG_ITEM_ALBUM_ARTIST] = "album artist",
[TAG_ITEM_COMMENT] = "comment",
[TAG_ITEM_GENRE] = "genre",
[TAG_ITEM_TRACK] = "track",