blob: b99a87e1cfe93678cb24dcc801d255611c696f3e [file] [log] [blame]
DRC36a6eec2010-10-08 08:05:44 +00001/* 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
DRCab64b622011-12-18 16:29:35 +00006/* libjpeg-turbo version */
7#define LIBJPEG_TURBO_VERSION 0
8
DRCe3720042010-11-23 06:50:14 +00009/* Support arithmetic encoding */
10#undef C_ARITH_CODING_SUPPORTED
11
12/* Support arithmetic decoding */
13#undef D_ARITH_CODING_SUPPORTED
14
DRCaee4f722014-08-09 23:06:07 +000015/*
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
DRCff6961f2014-04-20 09:17:11 +000026/* Define to 1 if you have the <locale.h> header file. */
27#undef HAVE_LOCALE_H
DRCab706232013-01-18 23:42:31 +000028
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000029/* 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
DRCff6961f2014-04-20 09:17:11 +000035/* Define to 1 if the system has the type `unsigned char'. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000036#undef HAVE_UNSIGNED_CHAR
37
DRCff6961f2014-04-20 09:17:11 +000038/* Define to 1 if the system has the type `unsigned short'. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000039#undef HAVE_UNSIGNED_SHORT
40
DRCff6961f2014-04-20 09:17:11 +000041/* Compiler does not support pointers to undefined structures. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000042#undef INCOMPLETE_TYPES_BROKEN
43
DRCff6961f2014-04-20 09:17:11 +000044/* 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>. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000049#undef NEED_BSD_STRINGS
50
DRCff6961f2014-04-20 09:17:11 +000051/* Define if you need to include <sys/types.h> to get size_t. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000052#undef NEED_SYS_TYPES_H
53
DRCff6961f2014-04-20 09:17:11 +000054/* Define if your (broken) compiler shifts signed values as if they were
55 unsigned. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000056#undef RIGHT_SHIFT_IS_UNSIGNED
57
Pierre Ossman59a39382009-03-09 13:15:56 +000058/* Use accelerated SIMD routines. */
59#undef WITH_SIMD
60
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000061/* 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
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000069/* Define to `unsigned int' if <sys/types.h> does not define. */
70#undef size_t
DRC3ebcc322015-05-15 19:09:44 +000071
72/* The size of `size_t', as computed by sizeof. */
73#undef SIZEOF_SIZE_T