Home
last modified time | relevance | path

Searched refs:JPEG_MAX_DIMENSION (Results 1 – 3 of 3) sorted by relevance

/external/jpeg/
Djdinput.c48 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()
Djcmaster.c60 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()
Djmorecfg.h195 #define JPEG_MAX_DIMENSION 65500L /* a tad under 64K to prevent overflows */ macro