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