diff options
author | David Schleef <ds@schleef.org> | 2004-03-07 22:07:20 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-03-07 22:07:20 +0000 |
commit | 719301715844ef34d3c993fb392d9dfe5ad6489c (patch) | |
tree | 7d209b1e5e2ec4f1d2c37734eb3c9edf993be837 /gst | |
parent | 0ac2c41fc7f5c23017de7c8e781138a50148c857 (diff) |
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)
Diffstat (limited to 'gst')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 3 |
1 files changed, 2 insertions, 1 deletions
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',' '): |