matroskaparse: Use ARTIST tag instead of AUTHOR for GST_TAG_ARTIST
authorDebarshi Ray <rishi@gnu.org>
Sat, 4 Jun 2011 20:30:08 +0000 (02:00 +0530)
committerDavid Schleef <ds@schleef.org>
Sat, 4 Jun 2011 20:43:27 +0000 (13:43 -0700)
AUTHOR only existed in an old version of the spec and ARTIST is
the new replacement for this. We are still reading both to still
be compatible with old files.

Fixes bug #644875.

gst/matroska/matroska-parse.c

index 177a619..f141ff5 100644 (file)
@@ -1702,6 +1702,7 @@ gst_matroska_parse_parse_metadata_id_simple_tag (GstMatroskaParse * parse,
   tag_conv[] = {
     {
     GST_MATROSKA_TAG_ID_TITLE, GST_TAG_TITLE}, {
+    GST_MATROSKA_TAG_ID_ARTIST, GST_TAG_ARTIST}, {
     GST_MATROSKA_TAG_ID_AUTHOR, GST_TAG_ARTIST}, {
     GST_MATROSKA_TAG_ID_ALBUM, GST_TAG_ALBUM}, {
     GST_MATROSKA_TAG_ID_COMMENTS, GST_TAG_COMMENT}, {