mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
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
This commit is contained in:
parent
a438034608
commit
404d40d1dd
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-01-11 Fabrizio Gennari <fabrizio.ge@tiscali.it>
|
||||
|
||||
reviewed by: Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
|
||||
Add support for Indeo3 video in Quicktime files.
|
||||
Closes #326524
|
||||
|
||||
2006-01-09 Edgard Lima <edgard.lima@indt.org.br>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue