diff options
author | Thiago Santos <thiagoss@embedded.ufcg.edu.br> | 2009-04-30 14:43:36 -0300 |
---|---|---|
committer | Dave Robillard <dave@drobilla.net> | 2009-05-03 12:03:20 -0400 |
commit | 52910ed7c8c0542dbe68932aae0f34d0e2f68a89 (patch) | |
tree | 7e78afda4749f04ac5e47212056fbf6238a8166f /gst | |
parent | a6d691173b5e80cea503f5786ed6b9b735a8ea7e (diff) | |
download | gst-plugins-bad-52910ed7c8c0542dbe68932aae0f34d0e2f68a89.tar.gz gst-plugins-bad-52910ed7c8c0542dbe68932aae0f34d0e2f68a89.tar.bz2 gst-plugins-bad-52910ed7c8c0542dbe68932aae0f34d0e2f68a89.zip |
qtmux: changes caps of src pads to video/quicktime, variant=something
Take a look at bug #580005 for further info.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/qtmux/gstqtmuxmap.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gst/qtmux/gstqtmuxmap.c b/gst/qtmux/gstqtmuxmap.c index 9a3bd4f2..a4972661 100644 --- a/gst/qtmux/gstqtmuxmap.c +++ b/gst/qtmux/gstqtmuxmap.c @@ -124,6 +124,7 @@ "rate = (int) 16000, " \ "channels = [ 1, 2 ] " +/* FIXME 0.11 - take a look at bugs #580005 and #340375 */ GstQTMuxFormatProp gst_qt_mux_format_list[] = { /* original QuickTime format; see Apple site (e.g. qtff.pdf) */ { @@ -131,7 +132,7 @@ GstQTMuxFormatProp gst_qt_mux_format_list[] = { "qtmux", "QuickTime", "GstQTMux", - GST_STATIC_CAPS ("video/quicktime"), + GST_STATIC_CAPS ("video/quicktime, variant = (string) apple"), GST_STATIC_CAPS ("video/x-raw-rgb, " COMMON_VIDEO_CAPS "; " "video/x-raw-yuv, " @@ -159,7 +160,7 @@ GstQTMuxFormatProp gst_qt_mux_format_list[] = { "mp4mux", "MP4", "GstMP4Mux", - GST_STATIC_CAPS ("application/x-iso-mp4"), + GST_STATIC_CAPS ("video/quicktime, variant = (string) iso"), GST_STATIC_CAPS (MPEG4V_CAPS "; " H264_CAPS ";" "video/x-mp4-part," COMMON_VIDEO_CAPS), GST_STATIC_CAPS (MP3_CAPS "; " AAC_CAPS) @@ -172,7 +173,7 @@ GstQTMuxFormatProp gst_qt_mux_format_list[] = { "gppmux", "3GPP", "GstGPPMux", - GST_STATIC_CAPS ("application/x-3gp"), + GST_STATIC_CAPS ("video/quicktime, variant = (string) 3gpp"), GST_STATIC_CAPS (H263_CAPS "; " H264_CAPS), GST_STATIC_CAPS (AMR_CAPS "; " MP3_CAPS "; " AAC_CAPS) } |