blob: 0425e55df9ab2a711f06ff5bf3c8921045b4ed74 [file] [log] [blame]
hbono@chromium.org98626972011-08-03 03:13:08 +00001/* Version ID for the JPEG library.
2 * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60".
hbono@chromium.org920a8a92010-11-22 09:17:38 +00003 */
Jonathan Wright24e31052021-04-26 12:10:48 +01004#define JPEG_LIB_VERSION 62
hbono@chromium.orgdf5ffdd2012-05-11 07:46:03 +00005
6/* libjpeg-turbo version */
Jonathan Wright24e31052021-04-26 12:10:48 +01007#define LIBJPEG_TURBO_VERSION 2.1.0
Chris Blumecca8c4d2019-03-01 01:09:50 -08008
9/* libjpeg-turbo version in integer form */
Jonathan Wright24e31052021-04-26 12:10:48 +010010#define LIBJPEG_TURBO_VERSION_NUMBER 2001000
hbono@chromium.org920a8a92010-11-22 09:17:38 +000011
hbono@chromium.org98626972011-08-03 03:13:08 +000012/* Support arithmetic encoding */
Tom Hudson0d47d2d2016-05-04 13:22:56 -040013/* #define C_ARITH_CODING_SUPPORTED 1 */
hbono@chromium.org98626972011-08-03 03:13:08 +000014
15/* Support arithmetic decoding */
Tom Hudson0d47d2d2016-05-04 13:22:56 -040016/* #define D_ARITH_CODING_SUPPORTED 1 */
hbono@chromium.org98626972011-08-03 03:13:08 +000017
Chris Blumecca8c4d2019-03-01 01:09:50 -080018/* Support in-memory source/destination managers */
19#define MEM_SRCDST_SUPPORTED 1
20
21/* Use accelerated SIMD routines. */
22#define WITH_SIMD 1
23
Tom Hudson0d47d2d2016-05-04 13:22:56 -040024/*
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 */
noel@chromium.org3395bcc2014-04-14 06:56:00 +000032
Jonathan Wright24e31052021-04-26 12:10:48 +010033#define BITS_IN_JSAMPLE 8 /* use 8 or 12 */
Tom Hudson0d47d2d2016-05-04 13:22:56 -040034
35/* Define to 1 if you have the <locale.h> header file. */
36#define HAVE_LOCALE_H 1
hbono@chromium.org98626972011-08-03 03:13:08 +000037
38/* Define to 1 if you have the <stddef.h> header file. */
hbono@chromium.org98626972011-08-03 03:13:08 +000039#define HAVE_STDDEF_H 1
hbono@chromium.org98626972011-08-03 03:13:08 +000040
41/* Define to 1 if you have the <stdlib.h> header file. */
hbono@chromium.org98626972011-08-03 03:13:08 +000042#define HAVE_STDLIB_H 1
hbono@chromium.org920a8a92010-11-22 09:17:38 +000043
Chris Blumecca8c4d2019-03-01 01:09:50 -080044/* Define if you need to include <sys/types.h> to get size_t. */
45/* #undef NEED_SYS_TYPES_H 1 */
46
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
hbono@chromium.org98626972011-08-03 03:13:08 +000051/* Define to 1 if the system has the type `unsigned char'. */
hbono@chromium.org98626972011-08-03 03:13:08 +000052#define HAVE_UNSIGNED_CHAR 1
hbono@chromium.org920a8a92010-11-22 09:17:38 +000053
hbono@chromium.org98626972011-08-03 03:13:08 +000054/* Define to 1 if the system has the type `unsigned short'. */
hbono@chromium.org98626972011-08-03 03:13:08 +000055#define HAVE_UNSIGNED_SHORT 1
hbono@chromium.org920a8a92010-11-22 09:17:38 +000056
Tom Hudson0d47d2d2016-05-04 13:22:56 -040057/* Compiler does not support pointers to undefined structures. */
hbono@chromium.org98626972011-08-03 03:13:08 +000058/* #undef INCOMPLETE_TYPES_BROKEN */
hbono@chromium.org920a8a92010-11-22 09:17:38 +000059
Tom Hudson0d47d2d2016-05-04 13:22:56 -040060/* Define if your (broken) compiler shifts signed values as if they were
61 unsigned. */
hbono@chromium.org98626972011-08-03 03:13:08 +000062/* #undef RIGHT_SHIFT_IS_UNSIGNED */
hbono@chromium.org920a8a92010-11-22 09:17:38 +000063
hbono@chromium.org98626972011-08-03 03:13:08 +000064/* Define to empty if `const' does not conform to ANSI C. */
65/* #undef const */
hbono@chromium.org920a8a92010-11-22 09:17:38 +000066
hbono@chromium.org98626972011-08-03 03:13:08 +000067/* Define to `unsigned int' if <sys/types.h> does not define. */
68/* #undef size_t */