summaryrefslogtreecommitdiffstats
path: root/gst/qtdemux/qtdemux.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2006-01-11 11:04:03 +0000
committerEdward Hervey <bilboed@bilboed.com>2006-01-11 11:04:03 +0000
commit404d40d1ddfbe993f42868517f05666baed5b43b (patch)
tree1320451cc92a66c5858bafe49d9b9df5e701b22d /gst/qtdemux/qtdemux.c
parenta438034608c14b446943fcc0fbb0fa04df93aa47 (diff)
downloadgst-plugins-bad-404d40d1ddfbe993f42868517f05666baed5b43b.tar.gz
gst-plugins-bad-404d40d1ddfbe993f42868517f05666baed5b43b.tar.bz2
gst-plugins-bad-404d40d1ddfbe993f42868517f05666baed5b43b.zip
gst/qtdemux/qtdemux.c: Add support for Indeo3 video in Quicktime files.
Original commit message from CVS: reviewed by: Edward Hervey <edward@fluendo.com> * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add support for Indeo3 video in Quicktime files. Closes #326524
Diffstat (limited to 'gst/qtdemux/qtdemux.c')
-rw-r--r--gst/qtdemux/qtdemux.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index ce01f649..a230f20b 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -2691,6 +2691,9 @@ qtdemux_video_caps (GstQTDemux * qtdemux, guint32 fourcc,
case GST_MAKE_FOURCC ('r', 'l', 'e', ' '):
_codec ("Run-length encoding");
return gst_caps_from_string ("video/x-rle, layout=(string)quicktime");
+ case GST_MAKE_FOURCC ('i', 'v', '3', '2'):
+ _codec ("Indeo Video 3");
+ return gst_caps_from_string ("video/x-indeo, indeoversion=(int)3");
case GST_MAKE_FOURCC ('s', 'm', 'c', ' '):
case GST_MAKE_FOURCC ('k', 'p', 'c', 'd'):
default: