blob: 02c12cc13b19f4a864cde37f19b79e2f08c3d2dd [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
DRCf06cc122016-05-10 19:36:34 -05009/* libjpeg-turbo version in integer form */
10#define LIBJPEG_TURBO_VERSION_NUMBER 0
11
DRCe3720042010-11-23 06:50:14 +000012/* Support arithmetic encoding */
13#undef C_ARITH_CODING_SUPPORTED
14
15/* Support arithmetic decoding */
16#undef D_ARITH_CODING_SUPPORTED
17
DRCaee4f722014-08-09 23:06:07 +000018/*
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
DRCff6961f2014-04-20 09:17:11 +000029/* Define to 1 if you have the <locale.h> header file. */
30#undef HAVE_LOCALE_H
DRCab706232013-01-18 23:42:31 +000031
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000032/* 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
DRCff6961f2014-04-20 09:17:11 +000038/* Define to 1 if the system has the type `unsigned char'. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000039#undef HAVE_UNSIGNED_CHAR
40
DRCff6961f2014-04-20 09:17:11 +000041/* Define to 1 if the system has the type `unsigned short'. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000042#undef HAVE_UNSIGNED_SHORT
43
DRCff6961f2014-04-20 09:17:11 +000044/* Compiler does not support pointers to undefined structures. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000045#undef INCOMPLETE_TYPES_BROKEN
46
DRCff6961f2014-04-20 09:17:11 +000047/* 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>. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000052#undef NEED_BSD_STRINGS
53
DRCff6961f2014-04-20 09:17:11 +000054/* Define if you need to include <sys/types.h> to get size_t. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000055#undef NEED_SYS_TYPES_H
56
DRCff6961f2014-04-20 09:17:11 +000057/* Define if your (broken) compiler shifts signed values as if they were
58 unsigned. */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000059#undef RIGHT_SHIFT_IS_UNSIGNED
60
Pierre Ossman59a39382009-03-09 13:15:56 +000061/* Use accelerated SIMD routines. */
62#undef WITH_SIMD
63
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000064/* 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
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000072/* Define to `unsigned int' if <sys/types.h> does not define. */
73#undef size_t