Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/libjpeg-turbo/
Djdinput.c51 if ((long)cinfo->image_height > (long)JPEG_MAX_DIMENSION || in initial_setup()
52 (long)cinfo->image_width > (long)JPEG_MAX_DIMENSION) in initial_setup()
53 ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int)JPEG_MAX_DIMENSION); in initial_setup()
Djcmaster.c103 if ((long)cinfo->_jpeg_height > (long)JPEG_MAX_DIMENSION || in initial_setup()
104 (long)cinfo->_jpeg_width > (long)JPEG_MAX_DIMENSION) in initial_setup()
105 ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int)JPEG_MAX_DIMENSION); in initial_setup()
Djmorecfg.h161 #define JPEG_MAX_DIMENSION 65500L /* a tad under 64K to prevent overflows */ macro