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:
David Schleef 2004-03-07 22:07:20 +00:00
parent 602f6e495d
commit 834f9685a1
2 changed files with 7 additions and 1 deletions

View file

@ -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>
* gst-libs/Makefile.am:

View file

@ -1763,9 +1763,10 @@ static GstCaps *qtdemux_video_caps(GstQTDemux *qtdemux, guint32 fourcc, const gu
"systemstream = (boolean) false");
case GST_MAKE_FOURCC('3','I','V','1'):
return gst_caps_from_string ("video/x-3ivx");
case GST_MAKE_FOURCC('r','p','z','a'):
case GST_MAKE_FOURCC('c','v','i','d'):
/* Cinepak */
return gst_caps_from_string ("video/x-cinepak");
case GST_MAKE_FOURCC('r','p','z','a'):
case GST_MAKE_FOURCC('r','l','e',' '):
/* Run-length encoding */
case GST_MAKE_FOURCC('s','m','c',' '):