mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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.
This commit is contained in:
parent
a8f72c67d1
commit
d08a7da76b
2 changed files with 11 additions and 2 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,11 +1,18 @@
|
|||
2007-02-14 Wim Taymans,,, <wim@fluendo.com>
|
||||
2007-02-14 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
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.
|
||||
|
||||
2007-02-14 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
Patch by: jp.liu <jp_liu at astrocom dot cn>
|
||||
|
||||
* gst/rtsp/rtspurl.c: (rtsp_url_parse):
|
||||
Fix parsing of password field in url. Fixes #407797.
|
||||
|
||||
2007-02-14 Wim Taymans,,, <wim@fluendo.com>
|
||||
2007-02-14 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
|
||||
(gst_wavparse_reset), (gst_wavparse_init),
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue