mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-04 22:48:54 +00:00
jpegdec: bump max size to 65535x65535
Remove artificial jpeg image limits. Fixes #583048.
This commit is contained in:
parent
cf68926ac7
commit
a0de8567ca
1 changed files with 2 additions and 2 deletions
|
@ -48,9 +48,9 @@ GST_ELEMENT_DETAILS ("JPEG image decoder",
|
|||
"Wim Taymans <wim@fluendo.com>");
|
||||
|
||||
#define MIN_WIDTH 16
|
||||
#define MAX_WIDTH 4096
|
||||
#define MAX_WIDTH 65535
|
||||
#define MIN_HEIGHT 8
|
||||
#define MAX_HEIGHT 4096
|
||||
#define MAX_HEIGHT 65535
|
||||
|
||||
#define DEFAULT_IDCT_METHOD JDCT_FASTEST
|
||||
|
||||
|
|
Loading…
Reference in a new issue