GNOME Bugzilla – Bug 407780
avimux does not handle video/x-h264
Last modified: 2007-02-14 12:08:05 UTC
avimux seems do not handle video/x-h264. Though caps could support handle video/x-h264, gst_avi_mux_vidsink_set_caps reject such input caps, it will turn out "refuse_caps" instead. adding these could handle such problem, } else if (!strcmp (mimetype, "video/x-h264")) { avimux->vids.compression = GST_MAKE_FOURCC ('H', '2', '6', '4'); reported by zhangfei gao <gaozhangfei@yahoo.com.cn> http://sourceforge.net/mailarchive/forum.php?thread_id=31655581&forum_id=5947
Created attachment 82519 [details] [review] add caps
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.