Commit 3e87e4f3 authored by Rasmus Steinke's avatar Rasmus Steinke Committed by Max Kellermann

flac: map "Album Artist" to "AlbumArtist"

This patch allows mpd to recognise the albumartist tag in the way foobar2000 and others write it to files.
parent 9cc373d6
......@@ -151,7 +151,9 @@ flac_parse_comment(struct tag *tag,
if (flac_copy_comment(tag, entry, VORBIS_COMMENT_TRACK_KEY,
TAG_ITEM_TRACK) ||
flac_copy_comment(tag, entry, VORBIS_COMMENT_DISC_KEY,
TAG_ITEM_DISC))
TAG_ITEM_DISC) ||
flac_copy_comment(tag, entry, "album artist",
TAG_ITEM_ALBUM_ARTIST))
return;
for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; ++i)
......
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