diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-12-13 00:54:14 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-12-13 00:54:14 +0000 |
commit | 82ccc32e940e47ac9129e25a48a0ca3537a82efc (patch) | |
tree | 44c48791c01d5e5528337fbcbac2b7475aeea163 | |
parent | fc108fdf7c2b09e84a711ecd0909276d02bf711d (diff) | |
download | gst-plugins-bad-82ccc32e940e47ac9129e25a48a0ca3537a82efc.tar.gz gst-plugins-bad-82ccc32e940e47ac9129e25a48a0ca3537a82efc.tar.bz2 gst-plugins-bad-82ccc32e940e47ac9129e25a48a0ca3537a82efc.zip |
add s263 4CC code to qtdemux too
Original commit message from CVS:
add s263 4CC code to qtdemux too
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -4,6 +4,7 @@ * gst/wavenc/riff.h * gst-libs/gst/riff/riff-ids.h * gst-libs/gst/riff/riff-media.c + * gst/qtdemux/qtdemux.c: add new 4CC codes for h263 related codecs fixes partially bug #155163 diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 14187c47..5babfe7c 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -2511,6 +2511,7 @@ qtdemux_video_caps (GstQTDemux * qtdemux, guint32 fourcc, case GST_MAKE_FOURCC ('g', 'i', 'f', ' '): return gst_caps_from_string ("image/gif"); case GST_MAKE_FOURCC ('h', '2', '6', '3'): + case GST_MAKE_FOURCC ('s', '2', '6', '3'): /* H.263 */ /* ffmpeg uses the height/width props, don't know why */ return gst_caps_from_string ("video/x-h263"); |