mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
jpegenc: also lift the arbitrary restrictions for width and height
This was already done for jpegdec.
This commit is contained in:
parent
4a492f2c8a
commit
566bd22435
1 changed files with 2 additions and 2 deletions
|
@ -132,8 +132,8 @@ GST_STATIC_PAD_TEMPLATE ("src",
|
|||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("image/jpeg, "
|
||||
"width = (int) [ 16, 4096 ], "
|
||||
"height = (int) [ 16, 4096 ], " "framerate = (fraction) [ 0/1, MAX ]")
|
||||
"width = (int) [ 16, 65535 ], "
|
||||
"height = (int) [ 16, 65535 ], " "framerate = (fraction) [ 0/1, MAX ]")
|
||||
);
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue