From: Julien Moutte Date: Mon, 24 Oct 2005 13:46:09 +0000 (+0000) Subject: gst/videomixer/videomixer.c: Don't restrict video geometry from 16 to 4096. X-Git-Tag: RELEASE-0_9_5~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f96fd6df192a680cb26eb6468b4bf2aec8b5a0e;p=platform%2Fupstream%2Fgst-plugins-good.git gst/videomixer/videomixer.c: Don't restrict video geometry from 16 to 4096. Original commit message from CVS: 2005-10-24 Julien MOUTTE * gst/videomixer/videomixer.c: Don't restrict video geometry from 16 to 4096. --- diff --git a/ChangeLog b/ChangeLog index eca1229..d9755cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2005-10-24 Julien MOUTTE + * gst/videomixer/videomixer.c: Don't restrict video geometry + from 16 to 4096. + +2005-10-24 Julien MOUTTE + * gst/videobox/gstvideobox.c: (gst_video_box_class_init), (gst_video_box_transform_caps), (gst_video_box_get_unit_size): Fix caps negotiation correctly, add debugging category. diff --git a/gst/videomixer/videomixer.c b/gst/videomixer/videomixer.c index b3efcf3..4c7ad00 100644 --- a/gst/videomixer/videomixer.c +++ b/gst/videomixer/videomixer.c @@ -383,8 +383,8 @@ static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_ALWAYS, GST_STATIC_CAPS ("video/x-raw-yuv," "format = (fourcc) AYUV," - "width = (int) [ 16, 4096 ]," - "height = (int) [ 16, 4096 ]," "framerate = (double) [ 0, max ]") + "width = (int) [ 1, max ]," + "height = (int) [ 1, max ]," "framerate = (double) [ 0, max ]") ); static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink_%d", @@ -392,8 +392,8 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink_%d", GST_PAD_REQUEST, GST_STATIC_CAPS ("video/x-raw-yuv," "format = (fourcc) AYUV," - "width = (int) [ 16, 4096 ]," - "height = (int) [ 16, 4096 ]," "framerate = (double) [ 0, max ]") + "width = (int) [ 1, max ]," + "height = (int) [ 1, max ]," "framerate = (double) [ 0, max ]") ); static void gst_videomixer_base_init (gpointer g_class);