jconfig.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* jconfig.h. Generated from jconfig.h.in by configure. */
  2. /* Version ID for the JPEG library.
  3. * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60".
  4. */
  5. #define JPEG_LIB_VERSION 62
  6. /* libjpeg-turbo version */
  7. #define LIBJPEG_TURBO_VERSION 1.5.0
  8. /* libjpeg-turbo version in integer form */
  9. #define LIBJPEG_TURBO_VERSION_NUMBER 1005000
  10. /* Support arithmetic encoding */
  11. #define C_ARITH_CODING_SUPPORTED 1
  12. /* Support arithmetic decoding */
  13. #define D_ARITH_CODING_SUPPORTED 1
  14. /*
  15. * Define BITS_IN_JSAMPLE as either
  16. * 8 for 8-bit sample values (the usual setting)
  17. * 12 for 12-bit sample values
  18. * Only 8 and 12 are legal data precisions for lossy JPEG according to the
  19. * JPEG standard, and the IJG code does not support anything else!
  20. * We do not support run-time selection of data precision, sorry.
  21. */
  22. #define BITS_IN_JSAMPLE 8 /* use 8 or 12 */
  23. /* Define to 1 if you have the <locale.h> header file. */
  24. #define HAVE_LOCALE_H 1
  25. /* Define to 1 if you have the <stddef.h> header file. */
  26. #define HAVE_STDDEF_H 1
  27. /* Define to 1 if you have the <stdlib.h> header file. */
  28. #define HAVE_STDLIB_H 1
  29. /* Define to 1 if the system has the type `unsigned char'. */
  30. #define HAVE_UNSIGNED_CHAR 1
  31. /* Define to 1 if the system has the type `unsigned short'. */
  32. #define HAVE_UNSIGNED_SHORT 1
  33. /* Compiler does not support pointers to undefined structures. */
  34. /* #undef INCOMPLETE_TYPES_BROKEN */
  35. /* Support in-memory source/destination managers */
  36. #define MEM_SRCDST_SUPPORTED 1
  37. /* Define if you have BSD-like bzero and bcopy in <strings.h> rather than
  38. memset/memcpy in <string.h>. */
  39. /* #undef NEED_BSD_STRINGS */
  40. /* Define if you need to include <sys/types.h> to get size_t. */
  41. #define NEED_SYS_TYPES_H 1
  42. /* Define if your (broken) compiler shifts signed values as if they were
  43. unsigned. */
  44. /* #undef RIGHT_SHIFT_IS_UNSIGNED */
  45. /* Use accelerated SIMD routines. */
  46. #define WITH_SIMD 1
  47. /* Define to 1 if type `char' is unsigned and you are not using gcc. */
  48. #ifndef __CHAR_UNSIGNED__
  49. /* # undef __CHAR_UNSIGNED__ */
  50. #endif
  51. /* Define to empty if `const' does not conform to ANSI C. */
  52. /* #undef const */
  53. /* Define to `unsigned int' if <sys/types.h> does not define. */
  54. /* #undef size_t */