diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-03-05 13:03:40 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-03-05 13:03:40 +0000 |
commit | c0a09d212b20a04533a4e4b50716cbed4e53303d (patch) | |
tree | f84466867f80ef921bff957fdd77a574fd1c29f5 /gst | |
parent | cc497a721af3b19b323831e1580111180880711e (diff) | |
download | gst-plugins-bad-c0a09d212b20a04533a4e4b50716cbed4e53303d.tar.gz gst-plugins-bad-c0a09d212b20a04533a4e4b50716cbed4e53303d.tar.bz2 gst-plugins-bad-c0a09d212b20a04533a4e4b50716cbed4e53303d.zip |
gst/qtdemux/qtdemux.c: Add support for '3IVD' fourcc (#333403).
Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
Add support for '3IVD' fourcc (#333403).
Diffstat (limited to 'gst')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 1842be8a..7d07ab4b 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -3189,6 +3189,10 @@ qtdemux_video_caps (GstQTDemux * qtdemux, guint32 fourcc, _codec ("MPEG-4 video"); return gst_caps_from_string ("video/mpeg, " "mpegversion = (int) 4, " "systemstream = (boolean) false"); + case GST_MAKE_FOURCC ('3', 'i', 'v', 'd'): + case GST_MAKE_FOURCC ('3', 'I', 'V', 'D'): + _codec ("Microsoft MPEG-4 4.3"); /* FIXME? */ + return gst_caps_from_string ("video/x-msmpeg, msmpegversion = (int) 43"); case GST_MAKE_FOURCC ('3', 'I', 'V', '1'): case GST_MAKE_FOURCC ('3', 'I', 'V', '2'): _codec ("3ivX video"); |