ext/taglib/gstid3v2mux.cc (add_funcs): Map new SORTNAME tags to ID3v2 TSOP, TSOA...
authorTim-Philipp Müller <tim@centricular.net>
Thu, 25 Oct 2007 15:00:15 +0000 (15:00 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Thu, 25 Oct 2007 15:00:15 +0000 (15:00 +0000)
Original commit message from CVS:
* ext/taglib/gstid3v2mux.cc (add_funcs):
Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).

ChangeLog
ext/taglib/gstid3v2mux.cc

index 01d9a3a..3d15840 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * ext/taglib/gstid3v2mux.cc (add_funcs):
+         Map new SORTNAME tags to ID3v2 TSOP, TSOA and TSOT frames (#414539).
+
 2007-10-24  Stefan Kost  <ensonic@users.sf.net>
 
        * tests/check/pipelines/simple-launch-lines.c:
index 6cf742d..c799feb 100644 (file)
@@ -585,7 +585,9 @@ static const struct
   GST_TAG_MUSICBRAINZ_ALBUMARTISTID, add_musicbrainz_tag, "\002"}, {
   GST_TAG_MUSICBRAINZ_TRMID, add_musicbrainz_tag, "\003"}, {
   GST_TAG_MUSICBRAINZ_TRACKID, add_unique_file_id_tag, ""}, {
-  GST_TAG_MUSICBRAINZ_SORTNAME, add_text_tag, "TSOP"}, {
+  GST_TAG_ARTIST_SORTNAME, add_text_tag, "TSOP"}, {
+  GST_TAG_ALBUM_SORTNAME, add_text_tag, "TSOA"}, {
+  GST_TAG_TITLE_SORTNAME, add_text_tag, "TSOT"}, {
   GST_TAG_TRACK_NUMBER, add_count_or_num_tag, "TRCK"}, {
   GST_TAG_TRACK_COUNT, add_count_or_num_tag, "TRCK"}, {
   GST_TAG_ALBUM_VOLUME_NUMBER, add_count_or_num_tag, "TPOS"}, {