diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 3 |
2 files changed, 7 insertions, 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> * gst-libs/Makefile.am: diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 38267655..8da138a9 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -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',' '): |