jpegdec: bump max size to 65535x65535

Remove artificial jpeg image limits.
Fixes #583048.
This commit is contained in:
Philippe Normand 2009-05-21 23:39:13 +02:00 committed by Wim Taymans
parent cf68926ac7
commit a0de8567ca

View file

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