| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 1 | /* Version ID for the JPEG library. | 
|  | 2 | * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". | 
| hbono@chromium.org | 920a8a9 | 2010-11-22 09:17:38 +0000 | [diff] [blame] | 3 | */ | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 4 | #define JPEG_LIB_VERSION 62 | 
| hbono@chromium.org | df5ffdd | 2012-05-11 07:46:03 +0000 | [diff] [blame] | 5 |  | 
|  | 6 | /* libjpeg-turbo version */ | 
| Jonathan Wright | bbb8282 | 2020-11-25 13:36:43 +0000 | [diff] [blame] | 7 | #define LIBJPEG_TURBO_VERSION 2.0.90 | 
| Chris Blume | cca8c4d | 2019-03-01 01:09:50 -0800 | [diff] [blame] | 8 |  | 
|  | 9 | /* libjpeg-turbo version in integer form */ | 
| Jonathan Wright | bbb8282 | 2020-11-25 13:36:43 +0000 | [diff] [blame] | 10 | #define LIBJPEG_TURBO_VERSION_NUMBER 2000090 | 
| hbono@chromium.org | 920a8a9 | 2010-11-22 09:17:38 +0000 | [diff] [blame] | 11 |  | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 12 | /* Support arithmetic encoding */ | 
| Tom Hudson | 0d47d2d | 2016-05-04 13:22:56 -0400 | [diff] [blame] | 13 | /* #define C_ARITH_CODING_SUPPORTED 1 */ | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 14 |  | 
|  | 15 | /* Support arithmetic decoding */ | 
| Tom Hudson | 0d47d2d | 2016-05-04 13:22:56 -0400 | [diff] [blame] | 16 | /* #define D_ARITH_CODING_SUPPORTED 1 */ | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 17 |  | 
| Chris Blume | cca8c4d | 2019-03-01 01:09:50 -0800 | [diff] [blame] | 18 | /* 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 Hudson | 0d47d2d | 2016-05-04 13:22:56 -0400 | [diff] [blame] | 24 | /* | 
|  | 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.org | 3395bcc | 2014-04-14 06:56:00 +0000 | [diff] [blame] | 32 |  | 
| Jonathan Wright | bbb8282 | 2020-11-25 13:36:43 +0000 | [diff] [blame] | 33 | #define BITS_IN_JSAMPLE 8      /* use 8 or 12 */ | 
| Tom Hudson | 0d47d2d | 2016-05-04 13:22:56 -0400 | [diff] [blame] | 34 |  | 
|  | 35 | /* Define to 1 if you have the <locale.h> header file. */ | 
|  | 36 | #define HAVE_LOCALE_H 1 | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 37 |  | 
|  | 38 | /* Define to 1 if you have the <stddef.h> header file. */ | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 39 | #define HAVE_STDDEF_H 1 | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 40 |  | 
|  | 41 | /* Define to 1 if you have the <stdlib.h> header file. */ | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 42 | #define HAVE_STDLIB_H 1 | 
| hbono@chromium.org | 920a8a9 | 2010-11-22 09:17:38 +0000 | [diff] [blame] | 43 |  | 
| Chris Blume | cca8c4d | 2019-03-01 01:09:50 -0800 | [diff] [blame] | 44 | /* 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.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 51 | /* Define to 1 if the system has the type `unsigned char'. */ | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 52 | #define HAVE_UNSIGNED_CHAR 1 | 
| hbono@chromium.org | 920a8a9 | 2010-11-22 09:17:38 +0000 | [diff] [blame] | 53 |  | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 54 | /* Define to 1 if the system has the type `unsigned short'. */ | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 55 | #define HAVE_UNSIGNED_SHORT 1 | 
| hbono@chromium.org | 920a8a9 | 2010-11-22 09:17:38 +0000 | [diff] [blame] | 56 |  | 
| Tom Hudson | 0d47d2d | 2016-05-04 13:22:56 -0400 | [diff] [blame] | 57 | /* Compiler does not support pointers to undefined structures. */ | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 58 | /* #undef INCOMPLETE_TYPES_BROKEN */ | 
| hbono@chromium.org | 920a8a9 | 2010-11-22 09:17:38 +0000 | [diff] [blame] | 59 |  | 
| Tom Hudson | 0d47d2d | 2016-05-04 13:22:56 -0400 | [diff] [blame] | 60 | /* Define if your (broken) compiler shifts signed values as if they were | 
|  | 61 | unsigned. */ | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 62 | /* #undef RIGHT_SHIFT_IS_UNSIGNED */ | 
| hbono@chromium.org | 920a8a9 | 2010-11-22 09:17:38 +0000 | [diff] [blame] | 63 |  | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 64 | /* Define to empty if `const' does not conform to ANSI C. */ | 
|  | 65 | /* #undef const */ | 
| hbono@chromium.org | 920a8a9 | 2010-11-22 09:17:38 +0000 | [diff] [blame] | 66 |  | 
| hbono@chromium.org | 9862697 | 2011-08-03 03:13:08 +0000 | [diff] [blame] | 67 | /* Define to `unsigned int' if <sys/types.h> does not define. */ | 
|  | 68 | /* #undef size_t */ |