forked from opencv/opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update libjpeg-turbo from 1.5.3 to 2.0.2
- Loading branch information
Showing
78 changed files
with
5,569 additions
and
5,170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#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 */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,31 @@ | ||
#define VERSION "@VERSION@" | ||
#define BUILD "@BUILD@" | ||
#define PACKAGE_NAME "@CMAKE_PROJECT_NAME@" | ||
|
||
#ifndef INLINE | ||
#if defined(__GNUC__) | ||
#define INLINE inline __attribute__((always_inline)) | ||
#elif defined(_MSC_VER) | ||
#define INLINE __forceinline | ||
#else | ||
#define INLINE | ||
/* libjpeg-turbo build number */ | ||
#define BUILD "@BUILD@" | ||
|
||
/* Compiler's inline keyword */ | ||
#undef inline | ||
|
||
/* How to obtain function inlining. */ | ||
#define INLINE @INLINE@ | ||
|
||
/* Define to the full name of this package. */ | ||
#define PACKAGE_NAME "@CMAKE_PROJECT_NAME@" | ||
|
||
/* Version number of package */ | ||
#define VERSION "@VERSION@" | ||
|
||
/* The size of `size_t', as computed by sizeof. */ | ||
#define SIZEOF_SIZE_T @SIZE_T@ | ||
|
||
/* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */ | ||
#cmakedefine HAVE_BUILTIN_CTZL | ||
|
||
/* Define to 1 if you have the <intrin.h> header file. */ | ||
#cmakedefine HAVE_INTRIN_H | ||
|
||
#if defined(_MSC_VER) && defined(HAVE_INTRIN_H) | ||
#if (SIZEOF_SIZE_T == 8) | ||
#define HAVE_BITSCANFORWARD64 | ||
#elif (SIZEOF_SIZE_T == 4) | ||
#define HAVE_BITSCANFORWARD | ||
#endif | ||
#endif |
Oops, something went wrong.