gst/asfdemux/gstasfdemux.c: add WMV3 to known 4CC video codecs, even if i doubt we have something to decode that

Original commit message from CVS:
* gst/asfdemux/gstasfdemux.c :
add WMV3 to known 4CC video codecs, even if i doubt we have something to decode that
This commit is contained in:
Stéphane Loeuillet 2004-05-16 20:42:05 +00:00
parent 0637045c16
commit c9177ba806

View file

@ -1665,6 +1665,13 @@ gst_asf_demux_video_caps (guint32 codec_fcc,
*codec_name = g_strdup ("Windows Media Video 8"); *codec_name = g_strdup ("Windows Media Video 8");
break; break;
case GST_MAKE_FOURCC ('W', 'M', 'V', '3'):
caps = gst_caps_new_simple ("video/x-wmv",
"wmvversion", G_TYPE_INT, 3, NULL);
if (codec_name)
*codec_name = g_strdup ("Windows Media Video 9");
break;
case GST_MAKE_FOURCC ('M', 'P', 'G', '4'): case GST_MAKE_FOURCC ('M', 'P', 'G', '4'):
caps = gst_caps_new_simple ("video/x-msmpeg", caps = gst_caps_new_simple ("video/x-msmpeg",
"msmpegversion", G_TYPE_INT, 41, NULL); "msmpegversion", G_TYPE_INT, 41, NULL);