From: Sebastian Dröge Date: Tue, 27 Apr 2010 13:25:32 +0000 (+0200) Subject: avimux: Add support for On2 VP8 X-Git-Tag: RELEASE-0.10.23~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d1842481c191af05ec1821186b6604442a946016;p=platform%2Fupstream%2Fgst-plugins-good.git avimux: Add support for On2 VP8 ...avidemux automatically supports it through libgstriff. --- diff --git a/gst/avi/gstavimux.c b/gst/avi/gstavimux.c index a0e6b80..8a7d843 100644 --- a/gst/avi/gstavimux.c +++ b/gst/avi/gstavimux.c @@ -148,6 +148,10 @@ static GstStaticPadTemplate video_sink_factory = "image/x-jpc, " "width = (int) [ 1, 2147483647 ], " "height = (int) [ 1, 2147483647 ], " + "framerate = (fraction) [ 0, MAX ];" + "video/x-vp8, " + "width = (int) [ 1, 2147483647 ], " + "height = (int) [ 1, 2147483647 ], " "framerate = (fraction) [ 0, MAX ]") ); @@ -613,6 +617,8 @@ gst_avi_mux_vidsink_set_caps (GstPad * pad, GstCaps * vscaps) } } else if (!strcmp (mimetype, "image/x-jpc")) { avipad->vids.compression = GST_MAKE_FOURCC ('M', 'J', '2', 'C'); + } else if (!strcmp (mimetype, "video/x-vp8")) { + avipad->vids.compression = GST_MAKE_FOURCC ('V', 'P', '8', '0'); } if (!avipad->vids.compression)