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