gst/videomixer/videomixer.c: Don't restrict video geometry from 16 to 4096.

Original commit message from CVS:
2005-10-24  Julien MOUTTE  <julien@moutte.net>

* gst/videomixer/videomixer.c: Don't restrict video geometry
from 16 to 4096.
This commit is contained in:
Julien Moutte 2005-10-24 13:46:09 +00:00
parent 70b4bda644
commit 0f96fd6df1
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2005-10-24 Julien MOUTTE <julien@moutte.net>
* gst/videomixer/videomixer.c: Don't restrict video geometry
from 16 to 4096.
2005-10-24 Julien MOUTTE <julien@moutte.net>
* gst/videobox/gstvideobox.c: (gst_video_box_class_init),

View file

@ -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);