riff: add fourcc for mpeg2-in-avi (as produced by mencoder)
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Wed, 25 Feb 2009 09:52:38 +0000 (09:52 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Wed, 25 Feb 2009 11:13:01 +0000 (11:13 +0000)
Fixes: #565777

gst-libs/gst/riff/riff-media.c

index a77d6c4..5773746 100644 (file)
@@ -173,6 +173,7 @@ gst_riff_create_video_caps (guint32 codec_fcc,
       break;
     case GST_MAKE_FOURCC ('M', 'P', 'G', '2'):
     case GST_MAKE_FOURCC ('m', 'p', 'g', '2'):
+    case GST_MAKE_FOURCC (0x02, 0x00, 0x00, 0x10):
       caps = gst_caps_new_simple ("video/mpeg",
           "systemstream", G_TYPE_BOOLEAN, FALSE,
           "mpegversion", G_TYPE_INT, 2, NULL);