jconfig.h 870 B

12345678910111213141516171819202122232425
  1. #define JPEG_LIB_VERSION 62
  2. #define LIBJPEG_TURBO_VERSION 4.1.5
  3. #define LIBJPEG_TURBO_VERSION_NUMBER 4001005
  4. /* #undef C_ARITH_CODING_SUPPORTED */
  5. /* #undef D_ARITH_CODING_SUPPORTED */
  6. #define MEM_SRCDST_SUPPORTED
  7. #define WITH_SIMD
  8. #define BITS_IN_JSAMPLE 8 /* use 8 or 12 */
  9. #undef RIGHT_SHIFT_IS_UNSIGNED
  10. /* Define "boolean" as unsigned char, not int, per Windows custom */
  11. #ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
  12. typedef unsigned char boolean;
  13. #endif
  14. #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
  15. /* Define "INT32" as int, not long, per Windows custom */
  16. #if !(defined(_BASETSD_H_) || defined(_BASETSD_H)) /* don't conflict if basetsd.h already read */
  17. typedef short INT16;
  18. typedef signed int INT32;
  19. #endif
  20. #define XMD_H /* prevent jmorecfg.h from redefining it */