Add APE mapping for album artist.

"De-facto" field mappings are available at http://wiki.hydrogenaud.io/index.php?title=Tag_Mapping.
This commit is contained in:
James D. Smith 2019-01-04 19:18:15 -07:00 committed by Max Kellermann
parent 772681f23d
commit 22d669da18
2 changed files with 3 additions and 0 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
ver 0.21.5 (not yet released)
* tags
- ape: map "Album Artist"
ver 0.21.4 (2019/01/04)
* database

View File

@ -29,6 +29,7 @@
#include <string.h>
static constexpr struct tag_table ape_tags[] = {
{ "album artist", TAG_ALBUM_ARTIST },
{ "year", TAG_DATE },
{ nullptr, TAG_NUM_OF_ITEM_TYPES }
};