jpegdec: bump max size to 65535x65535
authorPhilippe Normand <philippe at fluendo.com>
Thu, 21 May 2009 21:39:13 +0000 (23:39 +0200)
committerWim Taymans <wim@metal.(none)>
Thu, 21 May 2009 21:39:13 +0000 (23:39 +0200)
Remove artificial jpeg image limits.
Fixes #583048.

ext/jpeg/gstjpegdec.c

index dc26eeff7fda264726fd36825f9d27b4048f8281..2d680bc161322fc20cdebbf3d8b2e8dcc918a117 100644 (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