cnq3/code/libjpeg-turbo/jconfigint.h
arQon fc9465caab switch from jpeg6 to jpeg-turbo
aside from the speed improvements, this also makes for nicer code
in the renderer interaction with libjpeg, thanks to mem_dest support etc
2017-01-03 00:34:59 -08:00

13 lines
278 B
C

#define VERSION "1.5.1"
#define BUILD "20161223"
#define PACKAGE_NAME "libjpeg-turbo"
#ifndef INLINE
#if defined(__GNUC__)
#define INLINE inline __attribute__((always_inline))
#elif defined(_MSC_VER)
#define INLINE __forceinline
#else
#define INLINE
#endif
#endif