Accept ALBUMARTIST in !tags.m3u for foobar

This commit is contained in:
bnnm 2019-11-28 23:24:06 +01:00
parent a9594a10f4
commit 7a38dabe0a

View File

@ -192,6 +192,9 @@ void input_vgmstream::get_info(t_uint32 p_subsong, file_info & p_info, abort_cal
p_info.info_set_replaygain(tag_key, tag_val);
/* there is info_set_replaygain_auto too but no doc */
}
else if (stricmp_utf8("ALBUMARTIST", tag_key) == 0)
/* normalize as foobar won't handle (though it's accepted in .ogg) */
p_info.meta_set("ALBUM ARTIST", tag_val);
else {
p_info.meta_set(tag_key, tag_val);
}