Commit 2af1742f authored by Max Kellermann's avatar Max Kellermann

tag: added core support for the "album artist" tag

Added TAG_ITEM_ALBUM_ARTIST. With this patch, MPD should be able to read the (inofficial) "ALBUMARTIST" Vorbis comment. Implementations in other decoder plugins will follow soon.
parent 14527174
...@@ -44,6 +44,7 @@ static struct { ...@@ -44,6 +44,7 @@ static struct {
const char *mpdTagItemKeys[TAG_NUM_OF_ITEM_TYPES] = { const char *mpdTagItemKeys[TAG_NUM_OF_ITEM_TYPES] = {
"Artist", "Artist",
"Album", "Album",
"AlbumArtist",
"Title", "Title",
"Track", "Track",
"Name", "Name",
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
enum tag_type { enum tag_type {
TAG_ITEM_ARTIST, TAG_ITEM_ARTIST,
TAG_ITEM_ALBUM, TAG_ITEM_ALBUM,
TAG_ITEM_ALBUM_ARTIST,
TAG_ITEM_TITLE, TAG_ITEM_TITLE,
TAG_ITEM_TRACK, TAG_ITEM_TRACK,
TAG_ITEM_NAME, TAG_ITEM_NAME,
......
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