Add audio/x-id3 as a mimetype handled by mad.
authorIain Holmes <iain@prettypeople.org>
Mon, 13 Oct 2003 20:53:53 +0000 (20:53 +0000)
committerIain Holmes <iain@prettypeople.org>
Mon, 13 Oct 2003 20:53:53 +0000 (20:53 +0000)
Original commit message from CVS:
Add audio/x-id3 as a mimetype handled by mad.
Could also be a flac file apparently, but this allows it to work more times than it does currently

gst-libs/gst/media-info/media-info-priv.c

index 7c77670..eae5853 100644 (file)
@@ -221,7 +221,8 @@ gmi_get_decoder (GstMediaInfo *info, const char *mime)
       factory = g_strdup ("vorbisfile");
     else if ((strcmp (mime, "audio/mpeg") == 0) ||
              (strcmp (mime, "audio/x-mp3") == 0) ||
-             (strcmp (mime, "audio/mp3") == 0))
+             (strcmp (mime, "audio/mp3") == 0) ||
+            (strcmp (mime, "audio/x-id3") == 0))
       factory = g_strdup ("mad");
     else if (strcmp (mime, "application/x-flac") == 0)
       factory = g_strdup ("flacdec");