blob: d66ccf8f2fc7373265381495812c01421225681c [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 */
Jonathan Wright24e31052021-04-26 12:10:48 +01004#define JPEG_LIB_VERSION 62
DRC36a6eec2010-10-08 08:05:44 +00005
DRCab64b622011-12-18 16:29:35 +00006/* libjpeg-turbo version */
Jonathan Wright24e31052021-04-26 12:10:48 +01007#define LIBJPEG_TURBO_VERSION 2.1.0
Alex Naidis6eb7d372016-10-16 23:10:08 +02008
9/* libjpeg-turbo version in integer form */
Jonathan Wright24e31052021-04-26 12:10:48 +010010#define LIBJPEG_TURBO_VERSION_NUMBER 2001000
DRCab64b622011-12-18 16:29:35 +000011
DRCe3720042010-11-23 06:50:14 +000012/* Support arithmetic encoding */
Alex Naidis90043202016-10-18 15:18:47 +020013#define C_ARITH_CODING_SUPPORTED 1
DRCe3720042010-11-23 06:50:14 +000014
15/* Support arithmetic decoding */
Alex Naidis90043202016-10-18 15:18:47 +020016#define D_ARITH_CODING_SUPPORTED 1
DRCe3720042010-11-23 06:50:14 +000017
Haibo Huang090811c2019-03-15 09:25:39 -070018/* Support in-memory source/destination managers */
19#define MEM_SRCDST_SUPPORTED 1
20
21/* Use accelerated SIMD routines. */
22#define WITH_SIMD 1
23
DRCaee4f722014-08-09 23:06:07 +000024/*
25 * Define BITS_IN_JSAMPLE as either
26 * 8 for 8-bit sample values (the usual setting)
27 * 12 for 12-bit sample values
28 * Only 8 and 12 are legal data precisions for lossy JPEG according to the
29 * JPEG standard, and the IJG code does not support anything else!
30 * We do not support run-time selection of data precision, sorry.
31 */
32
Jonathan Wright24e31052021-04-26 12:10:48 +010033#define BITS_IN_JSAMPLE 8 /* use 8 or 12 */
DRCaee4f722014-08-09 23:06:07 +000034
DRCff6961f2014-04-20 09:17:11 +000035/* Define to 1 if you have the <locale.h> header file. */
Matt Sarett8f300592015-11-23 17:28:50 -050036#define HAVE_LOCALE_H 1
DRCab706232013-01-18 23:42:31 +000037
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000038/* Define to 1 if you have the <stddef.h> header file. */
Matt Sarett8f300592015-11-23 17:28:50 -050039#define HAVE_STDDEF_H 1
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000040
41/* Define to 1 if you have the <stdlib.h> header file. */
Matt Sarett8f300592015-11-23 17:28:50 -050042#define HAVE_STDLIB_H 1
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000043
Haibo Huang090811c2019-03-15 09:25:39 -070044/* Define if you need to include <sys/types.h> to get size_t. */
Chris Blumecca8c4d2019-03-01 01:09:50 -080045/* #undef NEED_SYS_TYPES_H 1 */
Haibo Huang090811c2019-03-15 09:25:39 -070046
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
DRCff6961f2014-04-20 09:17:11 +000051/* Define to 1 if the system has the type `unsigned char'. */
Matt Sarett8f300592015-11-23 17:28:50 -050052#define HAVE_UNSIGNED_CHAR 1
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000053
DRCff6961f2014-04-20 09:17:11 +000054/* Define to 1 if the system has the type `unsigned short'. */
Matt Sarett8f300592015-11-23 17:28:50 -050055#define HAVE_UNSIGNED_SHORT 1
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000056
DRCff6961f2014-04-20 09:17:11 +000057/* Compiler does not support pointers to undefined structures. */
Matt Sarett8f300592015-11-23 17:28:50 -050058/* #undef INCOMPLETE_TYPES_BROKEN */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000059
DRCff6961f2014-04-20 09:17:11 +000060/* Define if your (broken) compiler shifts signed values as if they were
61 unsigned. */
Matt Sarett8f300592015-11-23 17:28:50 -050062/* #undef RIGHT_SHIFT_IS_UNSIGNED */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000063
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000064/* Define to empty if `const' does not conform to ANSI C. */
Matt Sarett8f300592015-11-23 17:28:50 -050065/* #undef const */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000066
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000067/* Define to `unsigned int' if <sys/types.h> does not define. */
Matt Sarett8f300592015-11-23 17:28:50 -050068/* #undef size_t */