mirror of
https://github.com/opencv/opencv.git
synced 2024-11-27 12:40:05 +08:00
0de26fd78e
Zlib-ng is zlib replacement with optimizations for "next generation" systems. Its optimization may benifits image library decode and encode speed such as libpng. In our tests, if using zlib-ng and libpng combination on a x86_64 machine with AVX2, the time of `imdecode` amd `imencode` will drop 20% approximately. This patch enables zlib-ng's optimization if `CV_DISABLE_OPTIMIZATION` is OFF. Since Zlib-ng can dispatch intrinsics on the fly, port work is much easier. Related discussion: https://github.com/opencv/opencv/issues/22573
61 lines
1.7 KiB
C
61 lines
1.7 KiB
C
/* zendian.h -- define BYTE_ORDER for endian tests
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
|
|
#ifndef ENDIAN_H_
|
|
#define ENDIAN_H_
|
|
|
|
/* First check whether the compiler knows the target __BYTE_ORDER__. */
|
|
#if defined(__BYTE_ORDER__)
|
|
# if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
|
# if !defined(LITTLE_ENDIAN)
|
|
# define LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
|
|
# endif
|
|
# if !defined(BYTE_ORDER)
|
|
# define BYTE_ORDER LITTLE_ENDIAN
|
|
# endif
|
|
# elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
|
# if !defined(BIG_ENDIAN)
|
|
# define BIG_ENDIAN __ORDER_BIG_ENDIAN__
|
|
# endif
|
|
# if !defined(BYTE_ORDER)
|
|
# define BYTE_ORDER BIG_ENDIAN
|
|
# endif
|
|
# endif
|
|
#elif defined(__MINGW32__)
|
|
# include <sys/param.h>
|
|
#elif defined(_WIN32)
|
|
# define LITTLE_ENDIAN 1234
|
|
# define BIG_ENDIAN 4321
|
|
# if defined(_M_IX86) || defined(_M_AMD64) || defined(_M_IA64) || defined (_M_ARM) || defined (_M_ARM64) || defined (_M_ARM64EC)
|
|
# define BYTE_ORDER LITTLE_ENDIAN
|
|
# else
|
|
# error Unknown endianness!
|
|
# endif
|
|
#elif defined(__linux__)
|
|
# include <endian.h>
|
|
#elif defined(__APPLE__)
|
|
# include <machine/endian.h>
|
|
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(__DragonFly__)
|
|
# include <sys/endian.h>
|
|
#elif defined(__sun) || defined(sun)
|
|
# include <sys/byteorder.h>
|
|
# if !defined(LITTLE_ENDIAN)
|
|
# define LITTLE_ENDIAN 4321
|
|
# endif
|
|
# if !defined(BIG_ENDIAN)
|
|
# define BIG_ENDIAN 1234
|
|
# endif
|
|
# if !defined(BYTE_ORDER)
|
|
# if defined(_BIG_ENDIAN)
|
|
# define BYTE_ORDER BIG_ENDIAN
|
|
# else
|
|
# define BYTE_ORDER LITTLE_ENDIAN
|
|
# endif
|
|
# endif
|
|
#else
|
|
# include <endian.h>
|
|
#endif
|
|
|
|
#endif
|