Searched refs:JPEG_MAX_DIMENSION (Results 1 – 3 of 3) sorted by relevance
48 if ((long) cinfo->image_height > (long) JPEG_MAX_DIMENSION || in initial_setup()49 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION) in initial_setup()50 ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) JPEG_MAX_DIMENSION); in initial_setup()
60 if ((long) cinfo->image_height > (long) JPEG_MAX_DIMENSION || in initial_setup()61 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION) in initial_setup()62 ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) JPEG_MAX_DIMENSION); in initial_setup()
195 #define JPEG_MAX_DIMENSION 65500L /* a tad under 64K to prevent overflows */ macro