mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
gst/qtdemux/qtdemux.c: Added Cinepak format (bug #136470)
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak format (bug #136470)
This commit is contained in:
parent
602f6e495d
commit
834f9685a1
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-03-07 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
|
* gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Added Cinepak
|
||||||
|
format (bug #136470)
|
||||||
|
|
||||||
2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-03-07 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* gst-libs/Makefile.am:
|
* gst-libs/Makefile.am:
|
||||||
|
|
|
@ -1763,9 +1763,10 @@ static GstCaps *qtdemux_video_caps(GstQTDemux *qtdemux, guint32 fourcc, const gu
|
||||||
"systemstream = (boolean) false");
|
"systemstream = (boolean) false");
|
||||||
case GST_MAKE_FOURCC('3','I','V','1'):
|
case GST_MAKE_FOURCC('3','I','V','1'):
|
||||||
return gst_caps_from_string ("video/x-3ivx");
|
return gst_caps_from_string ("video/x-3ivx");
|
||||||
case GST_MAKE_FOURCC('r','p','z','a'):
|
|
||||||
case GST_MAKE_FOURCC('c','v','i','d'):
|
case GST_MAKE_FOURCC('c','v','i','d'):
|
||||||
/* Cinepak */
|
/* Cinepak */
|
||||||
|
return gst_caps_from_string ("video/x-cinepak");
|
||||||
|
case GST_MAKE_FOURCC('r','p','z','a'):
|
||||||
case GST_MAKE_FOURCC('r','l','e',' '):
|
case GST_MAKE_FOURCC('r','l','e',' '):
|
||||||
/* Run-length encoding */
|
/* Run-length encoding */
|
||||||
case GST_MAKE_FOURCC('s','m','c',' '):
|
case GST_MAKE_FOURCC('s','m','c',' '):
|
||||||
|
|
Loading…
Reference in a new issue