vorbiscomments: Remove support for non-standard "album artist" tags.

MPD used both "album artist" and "albumartist" tags and mapped them to one tag.
This could lead to issues, if a file had both tags, causing MPD to send
a list of albumartists instead of a single one.
Since "album artist" is not a standard tag anyway and even its originators
started to use the proper alternative, its time to say goodbye!
This commit is contained in:
Rasmus Steinke 2014-12-12 18:28:11 +01:00
parent 43267dc892
commit 7d9aa5b716
2 changed files with 3 additions and 2 deletions

4
NEWS
View File

@ -4,7 +4,9 @@ ver 0.20 (not yet released)
- "search"/"find" have a "window" parameter - "search"/"find" have a "window" parameter
- report song duration with milliseconds precision - report song duration with milliseconds precision
* tags * tags
- ape: drop support for non-standard tag "album artist" - ape, ogg: drop support for non-standard tag "album artist"
affected filetypes: vorbis, flac, opus & all files with ape2 tags
(most importantly some mp3s)
* decoder * decoder
- ffmpeg: support ReplayGain and MixRamp - ffmpeg: support ReplayGain and MixRamp
- ffmpeg: support stream tags - ffmpeg: support stream tags

View File

@ -27,7 +27,6 @@
const struct tag_table xiph_tags[] = { const struct tag_table xiph_tags[] = {
{ "tracknumber", TAG_TRACK }, { "tracknumber", TAG_TRACK },
{ "discnumber", TAG_DISC }, { "discnumber", TAG_DISC },
{ "album artist", TAG_ALBUM_ARTIST },
{ "description", TAG_COMMENT }, { "description", TAG_COMMENT },
{ nullptr, TAG_NUM_OF_ITEM_TYPES } { nullptr, TAG_NUM_OF_ITEM_TYPES }
}; };