diff options
author | zhangfei gao <gaozhangfei@yahoo.com.cn> | 2007-02-14 12:07:01 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2007-02-14 12:07:01 +0000 |
commit | d08a7da76b99ebe6c67ba3a76aaaa346298f0b09 (patch) | |
tree | ac0a509790881b4df1ed0c080d5ba3815229449c /gst/avi | |
parent | a8f72c67d1ce4ed6256b59fd07f2ed1a08bf68fb (diff) |
gst/avi/gstavimux.c: Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
Original commit message from CVS:
Patch by: zhangfei gao <gaozhangfei@yahoo.com.cn>
* gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps):
Allow muxing video/x-h264 (was already in the caps). Fixes #407780.
Diffstat (limited to 'gst/avi')
-rw-r--r-- | gst/avi/gstavimux.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/avi/gstavimux.c b/gst/avi/gstavimux.c index 84dc51aec..e44732a9a 100644 --- a/gst/avi/gstavimux.c +++ b/gst/avi/gstavimux.c @@ -523,6 +523,8 @@ gst_avi_mux_vidsink_set_caps (GstPad * pad, GstCaps * vscaps) avipad->vids.compression = GST_MAKE_FOURCC ('D', 'V', 'S', 'D'); } else if (!strcmp (mimetype, "video/x-h263")) { avipad->vids.compression = GST_MAKE_FOURCC ('H', '2', '6', '3'); + } else if (!strcmp (mimetype, "video/x-h264")) { + avipad->vids.compression = GST_MAKE_FOURCC ('H', '2', '6', '4'); } else if (!strcmp (mimetype, "video/mpeg")) { gint mpegversion; |