1 /* jconfig.h. Generated from jconfig.h.in by configure. */ 2 /* Version ID for the JPEG library. 3 * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". 4 */ 5 #define JPEG_LIB_VERSION 62 6 7 /* libjpeg-turbo version */ 8 #define LIBJPEG_TURBO_VERSION 1.5.1 9 10 /* libjpeg-turbo version in integer form */ 11 #define LIBJPEG_TURBO_VERSION_NUMBER 1005001 12 13 /* Support arithmetic encoding */ 14 #define C_ARITH_CODING_SUPPORTED 1 15 16 /* Support arithmetic decoding */ 17 #define D_ARITH_CODING_SUPPORTED 1 18 19 /* 20 * Define BITS_IN_JSAMPLE as either 21 * 8 for 8-bit sample values (the usual setting) 22 * 12 for 12-bit sample values 23 * Only 8 and 12 are legal data precisions for lossy JPEG according to the 24 * JPEG standard, and the IJG code does not support anything else! 25 * We do not support run-time selection of data precision, sorry. 26 */ 27 28 #define BITS_IN_JSAMPLE 8 /* use 8 or 12 */ 29 30 /* Define to 1 if you have the <locale.h> header file. */ 31 #define HAVE_LOCALE_H 1 32 33 /* Define to 1 if you have the <stddef.h> header file. */ 34 #define HAVE_STDDEF_H 1 35 36 /* Define to 1 if you have the <stdlib.h> header file. */ 37 #define HAVE_STDLIB_H 1 38 39 /* Define to 1 if the system has the type `unsigned char'. */ 40 #define HAVE_UNSIGNED_CHAR 1 41 42 /* Define to 1 if the system has the type `unsigned short'. */ 43 #define HAVE_UNSIGNED_SHORT 1 44 45 /* Compiler does not support pointers to undefined structures. */ 46 /* #undef INCOMPLETE_TYPES_BROKEN */ 47 48 /* Support in-memory source/destination managers */ 49 #define MEM_SRCDST_SUPPORTED 1 50 51 /* Define if you have BSD-like bzero and bcopy in <strings.h> rather than 52 memset/memcpy in <string.h>. */ 53 /* #undef NEED_BSD_STRINGS */ 54 55 /* Define if you need to include <sys/types.h> to get size_t. */ 56 /* #undef NEED_SYS_TYPES_H */ 57 58 /* Define if your (broken) compiler shifts signed values as if they were 59 unsigned. */ 60 /* #undef RIGHT_SHIFT_IS_UNSIGNED */ 61 62 /* Use accelerated SIMD routines. */ 63 #define WITH_SIMD 1 64 65 /* Define to 1 if type `char' is unsigned and you are not using gcc. */ 66 #ifndef __CHAR_UNSIGNED__ 67 /* # undef __CHAR_UNSIGNED__ */ 68 #endif 69 70 /* Define to empty if `const' does not conform to ANSI C. */ 71 /* #undef const */ 72 73 /* Define to `unsigned int' if <sys/types.h> does not define. */ 74 /* #undef size_t */ 75