summaryrefslogtreecommitdiff
path: root/com32/lib/jpeg
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-08-05 08:44:15 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-08-05 08:44:15 -0700
commit288ce63dee16f80dac282c020b3ed7f4470e9265 (patch)
treef812a35e430cb747e4d38aebf6b4cbed1d7c6b55 /com32/lib/jpeg
parent74da4eee9a9c7c34a986e4a559627acd12b49a9b (diff)
downloadsyslinux-288ce63dee16f80dac282c020b3ed7f4470e9265.tar.gz
tinyjpeg: set limit to 4096x4096 not 2048x2048
There are already screens on the market which are bigger than 2048 wide... Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/lib/jpeg')
-rw-r--r--com32/lib/jpeg/tinyjpeg-internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/com32/lib/jpeg/tinyjpeg-internal.h b/com32/lib/jpeg/tinyjpeg-internal.h
index b04a302a..bd0e58da 100644
--- a/com32/lib/jpeg/tinyjpeg-internal.h
+++ b/com32/lib/jpeg/tinyjpeg-internal.h
@@ -48,8 +48,8 @@ struct jdec_private;
#define HUFFMAN_TABLES 4
#define COMPONENTS 3
-#define JPEG_MAX_WIDTH 2048
-#define JPEG_MAX_HEIGHT 2048
+#define JPEG_MAX_WIDTH 4096
+#define JPEG_MAX_HEIGHT 4096
struct huffman_table
{