mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
6 years ago
|
#define JPEG_LIB_VERSION @JPEG_LIB_VERSION@
|
||
|
#define LIBJPEG_TURBO_VERSION @VERSION@
|
||
|
#define LIBJPEG_TURBO_VERSION_NUMBER @LIBJPEG_TURBO_VERSION_NUMBER@
|
||
|
|
||
|
#cmakedefine C_ARITH_CODING_SUPPORTED
|
||
|
#cmakedefine D_ARITH_CODING_SUPPORTED
|
||
|
#cmakedefine MEM_SRCDST_SUPPORTED
|
||
|
#cmakedefine WITH_SIMD
|
||
|
|
||
|
#define BITS_IN_JSAMPLE @BITS_IN_JSAMPLE@ /* use 8 or 12 */
|
||
|
|
||
|
#define HAVE_STDDEF_H
|
||
|
#define HAVE_STDLIB_H
|
||
|
#undef NEED_SYS_TYPES_H
|
||
|
#undef NEED_BSD_STRINGS
|
||
|
|
||
|
#define HAVE_UNSIGNED_CHAR
|
||
|
#define HAVE_UNSIGNED_SHORT
|
||
|
#undef INCOMPLETE_TYPES_BROKEN
|
||
|
#undef RIGHT_SHIFT_IS_UNSIGNED
|
||
|
#undef __CHAR_UNSIGNED__
|
||
|
|
||
|
/* Define "boolean" as unsigned char, not int, per Windows custom */
|
||
|
#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
|
||
|
typedef unsigned char boolean;
|
||
|
#endif
|
||
|
#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
|
||
|
|
||
|
/* Define "INT32" as int, not long, per Windows custom */
|
||
|
#if !(defined(_BASETSD_H_) || defined(_BASETSD_H)) /* don't conflict if basetsd.h already read */
|
||
|
typedef short INT16;
|
||
|
typedef signed int INT32;
|
||
|
#endif
|
||
|
#define XMD_H /* prevent jmorecfg.h from redefining it */
|