diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-10-09 19:55:30 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2004-10-09 19:55:30 +0000 |
commit | fc113f4c39b818ae8926f5b208cd4f65396d25d7 (patch) | |
tree | 7b8a46f831d977974885f6587d597f6437869818 | |
parent | 9440dd702f4082e4bac77cbdc2bc66041d6b5467 (diff) | |
download | gst-plugins-bad-fc113f4c39b818ae8926f5b208cd4f65396d25d7.tar.gz gst-plugins-bad-fc113f4c39b818ae8926f5b208cd4f65396d25d7.tar.bz2 gst-plugins-bad-fc113f4c39b818ae8926f5b208cd4f65396d25d7.zip |
gst-libs/gst/riff/riff-media.c: WMV3 missing in template caps.
Original commit message from CVS:
* gst-libs/gst/riff/riff-media.c:
(gst_riff_create_video_template_caps):
WMV3 missing in template caps.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gst-libs/gst/riff/riff-media.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + * gst-libs/gst/riff/riff-media.c: + (gst_riff_create_video_template_caps): + WMV3 missing in template caps. + +2004-10-09 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index): OK, so the original code was too strict. It makes random AVI files hang for seconds upon opening, which is unacceptable and is far diff --git a/gst-libs/gst/riff/riff-media.c b/gst-libs/gst/riff/riff-media.c index 25e1c690..9912a6e8 100644 --- a/gst-libs/gst/riff/riff-media.c +++ b/gst-libs/gst/riff/riff-media.c @@ -565,6 +565,7 @@ gst_riff_create_video_template_caps (void) GST_MAKE_FOURCC ('D', 'V', 'S', 'D'), GST_MAKE_FOURCC ('W', 'M', 'V', '1'), GST_MAKE_FOURCC ('W', 'M', 'V', '2'), + GST_MAKE_FOURCC ('W', 'M', 'V', '3'), GST_MAKE_FOURCC ('M', 'P', 'G', '4'), GST_MAKE_FOURCC ('M', 'P', '4', '2'), GST_MAKE_FOURCC ('M', 'P', '4', '3'), |