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