OLD | NEW |
1 /* jconfig.h. Generated from jconfig.h.in by configure. */ | 1 /* jconfig.h. Generated from jconfig.h.in by configure. */ |
2 /* Version ID for the JPEG library. | 2 /* Version ID for the JPEG library. |
3 * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". | 3 * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". |
4 */ | 4 */ |
5 #ifndef JPEG_LIB_VERSION | |
6 #define JPEG_LIB_VERSION 62 | 5 #define JPEG_LIB_VERSION 62 |
7 #endif /* JPEG_LIB_VERSION */ | 6 |
| 7 /* libjpeg-turbo version */ |
| 8 #define LIBJPEG_TURBO_VERSION 1.2.80 |
8 | 9 |
9 /* Support arithmetic encoding */ | 10 /* Support arithmetic encoding */ |
10 /* #undef C_ARITH_CODING_SUPPORTED */ | 11 /* #undef C_ARITH_CODING_SUPPORTED */ |
11 | 12 |
12 /* Support arithmetic decoding */ | 13 /* Support arithmetic decoding */ |
13 /* #undef D_ARITH_CODING_SUPPORTED */ | 14 /* #undef D_ARITH_CODING_SUPPORTED */ |
14 | 15 |
15 /* Define if your compiler supports prototypes */ | 16 /* Define if your compiler supports prototypes */ |
16 #ifndef HAVE_PROTOTYPES | |
17 #define HAVE_PROTOTYPES 1 | 17 #define HAVE_PROTOTYPES 1 |
18 #endif /* HAVE_PROTOTYPES */ | |
19 | 18 |
20 /* Define to 1 if you have the <stddef.h> header file. */ | 19 /* Define to 1 if you have the <stddef.h> header file. */ |
21 #ifndef HAVE_STDDEF_H | |
22 #define HAVE_STDDEF_H 1 | 20 #define HAVE_STDDEF_H 1 |
23 #endif /* HAVE_STDDEF_H */ | |
24 | 21 |
25 /* Define to 1 if you have the <stdlib.h> header file. */ | 22 /* Define to 1 if you have the <stdlib.h> header file. */ |
26 #ifndef HAVE_STDLIB_H | |
27 #define HAVE_STDLIB_H 1 | 23 #define HAVE_STDLIB_H 1 |
28 #endif /* HAVE_STDLIB_H */ | |
29 | 24 |
30 /* Define to 1 if the system has the type `unsigned char'. */ | 25 /* Define to 1 if the system has the type `unsigned char'. */ |
31 #ifndef HAVE_UNSIGNED_CHAR | |
32 #define HAVE_UNSIGNED_CHAR 1 | 26 #define HAVE_UNSIGNED_CHAR 1 |
33 #endif /* HAVE_UNSIGNED_CHAR */ | |
34 | 27 |
35 /* Define to 1 if the system has the type `unsigned short'. */ | 28 /* Define to 1 if the system has the type `unsigned short'. */ |
36 #ifndef HAVE_UNSIGNED_SHORT | |
37 #define HAVE_UNSIGNED_SHORT 1 | 29 #define HAVE_UNSIGNED_SHORT 1 |
38 #endif /* HAVE_UNSIGNED_SHORT */ | |
39 | 30 |
40 /* Define if you want use complete types */ | 31 /* Define if you want use complete types */ |
41 /* #undef INCOMPLETE_TYPES_BROKEN */ | 32 /* #undef INCOMPLETE_TYPES_BROKEN */ |
42 | 33 |
43 /* How to obtain function inlining. */ | |
44 #ifndef INLINE | |
45 #if defined(__GNUC__) | |
46 #define INLINE __attribute__((always_inline)) | |
47 #elif defined(_MSC_VER) | |
48 #define INLINE __forceinline | |
49 #else | |
50 #define INLINE | |
51 #endif | |
52 #endif | |
53 | |
54 /* Define if you have BSD-like bzero and bcopy */ | 34 /* Define if you have BSD-like bzero and bcopy */ |
55 /* #undef NEED_BSD_STRINGS */ | 35 /* #undef NEED_BSD_STRINGS */ |
56 | 36 |
57 /* Define if you need short function names */ | 37 /* Define if you need short function names */ |
58 /* #undef NEED_SHORT_EXTERNAL_NAMES */ | 38 /* #undef NEED_SHORT_EXTERNAL_NAMES */ |
59 | 39 |
60 /* Define if you have sys/types.h */ | 40 /* Define if you have sys/types.h */ |
61 /* #undef NEED_SYS_TYPES_H */ | 41 /* #undef NEED_SYS_TYPES_H */ |
62 | 42 |
63 /* Define if shift is unsigned */ | 43 /* Define if shift is unsigned */ |
64 /* #undef RIGHT_SHIFT_IS_UNSIGNED */ | 44 /* #undef RIGHT_SHIFT_IS_UNSIGNED */ |
65 | 45 |
66 /* Use accelerated SIMD routines. */ | 46 /* Use accelerated SIMD routines. */ |
67 #define WITH_SIMD 1 | 47 #define WITH_SIMD 1 |
68 | 48 |
69 /* Define to 1 if type `char' is unsigned and you are not using gcc. */ | 49 /* Define to 1 if type `char' is unsigned and you are not using gcc. */ |
70 #ifndef __CHAR_UNSIGNED__ | 50 #ifndef __CHAR_UNSIGNED__ |
71 /* # undef __CHAR_UNSIGNED__ */ | 51 /* # undef __CHAR_UNSIGNED__ */ |
72 #endif | 52 #endif |
73 | 53 |
74 /* Define to empty if `const' does not conform to ANSI C. */ | 54 /* Define to empty if `const' does not conform to ANSI C. */ |
75 /* #undef const */ | 55 /* #undef const */ |
76 | 56 |
77 /* Define to `__inline__' or `__inline' if that's what the C compiler | |
78 calls it, or to nothing if 'inline' is not supported under any name. */ | |
79 #ifndef __cplusplus | |
80 /* #undef inline */ | |
81 #endif | |
82 | |
83 /* Define to `unsigned int' if <sys/types.h> does not define. */ | 57 /* Define to `unsigned int' if <sys/types.h> does not define. */ |
84 /* #undef size_t */ | 58 /* #undef size_t */ |
OLD | NEW |