shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * jmorecfg.h
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * This file was part of the Independent JPEG Group's software:
shun-iwasawa 82a8f5
 * Copyright (C) 1991-1997, Thomas G. Lane.
shun-iwasawa 82a8f5
 * Modified 1997-2009 by Guido Vollbeding.
shun-iwasawa 82a8f5
 * libjpeg-turbo Modifications:
shun-iwasawa 82a8f5
 * Copyright (C) 2009, 2011, 2014-2015, 2018, 2020, D. R. Commander.
shun-iwasawa 82a8f5
 * For conditions of distribution and use, see the accompanying README.ijg
shun-iwasawa 82a8f5
 * file.
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * This file contains additional configuration options that customize the
shun-iwasawa 82a8f5
 * JPEG software for special applications or support machine-dependent
shun-iwasawa 82a8f5
 * optimizations.  Most users will not need to touch this file.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * Maximum number of components (color channels) allowed in JPEG image.
shun-iwasawa 82a8f5
 * To meet the letter of Rec. ITU-T T.81 | ISO/IEC 10918-1, set this to 255.
shun-iwasawa 82a8f5
 * However, darn few applications need more than 4 channels (maybe 5 for CMYK +
shun-iwasawa 82a8f5
 * alpha mask).  We recommend 10 as a reasonable compromise; use 4 if you are
shun-iwasawa 82a8f5
 * really short on memory.  (Each allowed component costs a hundred or so
shun-iwasawa 82a8f5
 * bytes of storage, whether actually used in an image or not.)
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define MAX_COMPONENTS  10      /* maximum number of image components */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * Basic data types.
shun-iwasawa 82a8f5
 * You may need to change these if you have a machine with unusual data
shun-iwasawa 82a8f5
 * type sizes; for example, "char" not 8 bits, "short" not 16 bits,
shun-iwasawa 82a8f5
 * or "long" not 32 bits.  We don't care whether "int" is 16 or 32 bits,
shun-iwasawa 82a8f5
 * but it had better be at least 16.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Representation of a single sample (pixel element value).
shun-iwasawa 82a8f5
 * We frequently allocate large arrays of these, so it's important to keep
shun-iwasawa 82a8f5
 * them small.  But if you have memory to burn and access to char or short
shun-iwasawa 82a8f5
 * arrays is very slow on your hardware, you might want to change these.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#if BITS_IN_JSAMPLE == 8
shun-iwasawa 82a8f5
/* JSAMPLE should be the smallest type that will hold the values 0..255.
shun-iwasawa 82a8f5
 * You can use a signed char by having GETJSAMPLE mask it with 0xFF.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifdef HAVE_UNSIGNED_CHAR
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
typedef unsigned char JSAMPLE;
shun-iwasawa 82a8f5
#define GETJSAMPLE(value)  ((int)(value))
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#else /* not HAVE_UNSIGNED_CHAR */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
typedef char JSAMPLE;
shun-iwasawa 82a8f5
#ifdef __CHAR_UNSIGNED__
shun-iwasawa 82a8f5
#define GETJSAMPLE(value)  ((int)(value))
shun-iwasawa 82a8f5
#else
shun-iwasawa 82a8f5
#define GETJSAMPLE(value)  ((int)(value) & 0xFF)
shun-iwasawa 82a8f5
#endif /* __CHAR_UNSIGNED__ */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#endif /* HAVE_UNSIGNED_CHAR */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define MAXJSAMPLE      255
shun-iwasawa 82a8f5
#define CENTERJSAMPLE   128
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#endif /* BITS_IN_JSAMPLE == 8 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#if BITS_IN_JSAMPLE == 12
shun-iwasawa 82a8f5
/* JSAMPLE should be the smallest type that will hold the values 0..4095.
shun-iwasawa 82a8f5
 * On nearly all machines "short" will do nicely.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
typedef short JSAMPLE;
shun-iwasawa 82a8f5
#define GETJSAMPLE(value)  ((int)(value))
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define MAXJSAMPLE      4095
shun-iwasawa 82a8f5
#define CENTERJSAMPLE   2048
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#endif /* BITS_IN_JSAMPLE == 12 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Representation of a DCT frequency coefficient.
shun-iwasawa 82a8f5
 * This should be a signed value of at least 16 bits; "short" is usually OK.
shun-iwasawa 82a8f5
 * Again, we allocate large arrays of these, but you can change to int
shun-iwasawa 82a8f5
 * if you have memory to burn and "short" is really slow.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
typedef short JCOEF;
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Compressed datastreams are represented as arrays of JOCTET.
shun-iwasawa 82a8f5
 * These must be EXACTLY 8 bits wide, at least once they are written to
shun-iwasawa 82a8f5
 * external storage.  Note that when using the stdio data source/destination
shun-iwasawa 82a8f5
 * managers, this is also the data type passed to fread/fwrite.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifdef HAVE_UNSIGNED_CHAR
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
typedef unsigned char JOCTET;
shun-iwasawa 82a8f5
#define GETJOCTET(value)  (value)
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#else /* not HAVE_UNSIGNED_CHAR */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
typedef char JOCTET;
shun-iwasawa 82a8f5
#ifdef __CHAR_UNSIGNED__
shun-iwasawa 82a8f5
#define GETJOCTET(value)  (value)
shun-iwasawa 82a8f5
#else
shun-iwasawa 82a8f5
#define GETJOCTET(value)  ((value) & 0xFF)
shun-iwasawa 82a8f5
#endif /* __CHAR_UNSIGNED__ */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#endif /* HAVE_UNSIGNED_CHAR */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* These typedefs are used for various table entries and so forth.
shun-iwasawa 82a8f5
 * They must be at least as wide as specified; but making them too big
shun-iwasawa 82a8f5
 * won't cost a huge amount of memory, so we don't provide special
shun-iwasawa 82a8f5
 * extraction code like we did for JSAMPLE.  (In other words, these
shun-iwasawa 82a8f5
 * typedefs live at a different point on the speed/space tradeoff curve.)
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* UINT8 must hold at least the values 0..255. */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifdef HAVE_UNSIGNED_CHAR
shun-iwasawa 82a8f5
typedef unsigned char UINT8;
shun-iwasawa 82a8f5
#else /* not HAVE_UNSIGNED_CHAR */
shun-iwasawa 82a8f5
#ifdef __CHAR_UNSIGNED__
shun-iwasawa 82a8f5
typedef char UINT8;
shun-iwasawa 82a8f5
#else /* not __CHAR_UNSIGNED__ */
shun-iwasawa 82a8f5
typedef short UINT8;
shun-iwasawa 82a8f5
#endif /* __CHAR_UNSIGNED__ */
shun-iwasawa 82a8f5
#endif /* HAVE_UNSIGNED_CHAR */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* UINT16 must hold at least the values 0..65535. */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifdef HAVE_UNSIGNED_SHORT
shun-iwasawa 82a8f5
typedef unsigned short UINT16;
shun-iwasawa 82a8f5
#else /* not HAVE_UNSIGNED_SHORT */
shun-iwasawa 82a8f5
typedef unsigned int UINT16;
shun-iwasawa 82a8f5
#endif /* HAVE_UNSIGNED_SHORT */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* INT16 must hold at least the values -32768..32767. */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifndef XMD_H                   /* X11/xmd.h correctly defines INT16 */
shun-iwasawa 82a8f5
typedef short INT16;
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* INT32 must hold at least signed 32-bit values.
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * NOTE: The INT32 typedef dates back to libjpeg v5 (1994.)  Integers were
shun-iwasawa 82a8f5
 * sometimes 16-bit back then (MS-DOS), which is why INT32 is typedef'd to
shun-iwasawa 82a8f5
 * long.  It also wasn't common (or at least as common) in 1994 for INT32 to be
shun-iwasawa 82a8f5
 * defined by platform headers.  Since then, however, INT32 is defined in
shun-iwasawa 82a8f5
 * several other common places:
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * Xmd.h (X11 header) typedefs INT32 to int on 64-bit platforms and long on
shun-iwasawa 82a8f5
 * 32-bit platforms (i.e always a 32-bit signed type.)
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * basetsd.h (Win32 header) typedefs INT32 to int (always a 32-bit signed type
shun-iwasawa 82a8f5
 * on modern platforms.)
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * qglobal.h (Qt header) typedefs INT32 to int (always a 32-bit signed type on
shun-iwasawa 82a8f5
 * modern platforms.)
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * This is a recipe for conflict, since "long" and "int" aren't always
shun-iwasawa 82a8f5
 * compatible types.  Since the definition of INT32 has technically been part
shun-iwasawa 82a8f5
 * of the libjpeg API for more than 20 years, we can't remove it, but we do not
shun-iwasawa 82a8f5
 * use it internally any longer.  We instead define a separate type (JLONG)
shun-iwasawa 82a8f5
 * for internal use, which ensures that internal behavior will always be the
shun-iwasawa 82a8f5
 * same regardless of any external headers that may be included.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifndef XMD_H                   /* X11/xmd.h correctly defines INT32 */
shun-iwasawa 82a8f5
#ifndef _BASETSD_H_             /* Microsoft defines it in basetsd.h */
shun-iwasawa 82a8f5
#ifndef _BASETSD_H              /* MinGW is slightly different */
shun-iwasawa 82a8f5
#ifndef QGLOBAL_H               /* Qt defines it in qglobal.h */
shun-iwasawa 82a8f5
typedef long INT32;
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Datatype used for image dimensions.  The JPEG standard only supports
shun-iwasawa 82a8f5
 * images up to 64K*64K due to 16-bit fields in SOF markers.  Therefore
shun-iwasawa 82a8f5
 * "unsigned int" is sufficient on all machines.  However, if you need to
shun-iwasawa 82a8f5
 * handle larger images and you don't mind deviating from the spec, you
shun-iwasawa 82a8f5
 * can change this datatype.  (Note that changing this datatype will
shun-iwasawa 82a8f5
 * potentially require modifying the SIMD code.  The x86-64 SIMD extensions,
shun-iwasawa 82a8f5
 * in particular, assume a 32-bit JDIMENSION.)
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
typedef unsigned int JDIMENSION;
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define JPEG_MAX_DIMENSION  65500L  /* a tad under 64K to prevent overflows */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* These macros are used in all function definitions and extern declarations.
shun-iwasawa 82a8f5
 * You could modify them if you need to change function linkage conventions;
shun-iwasawa 82a8f5
 * in particular, you'll need to do that to make the library a Windows DLL.
shun-iwasawa 82a8f5
 * Another application is to make all functions global for use with debuggers
shun-iwasawa 82a8f5
 * or code profilers that require it.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* a function called through method pointers: */
shun-iwasawa 82a8f5
#define METHODDEF(type)         static type
shun-iwasawa 82a8f5
/* a function used only in its module: */
shun-iwasawa 82a8f5
#define LOCAL(type)             static type
shun-iwasawa 82a8f5
/* a function referenced thru EXTERNs: */
shun-iwasawa 82a8f5
#define GLOBAL(type)            type
shun-iwasawa 82a8f5
/* a reference to a GLOBAL function: */
shun-iwasawa 82a8f5
#define EXTERN(type)            extern type
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Originally, this macro was used as a way of defining function prototypes
shun-iwasawa 82a8f5
 * for both modern compilers as well as older compilers that did not support
shun-iwasawa 82a8f5
 * prototype parameters.  libjpeg-turbo has never supported these older,
shun-iwasawa 82a8f5
 * non-ANSI compilers, but the macro is still included because there is some
shun-iwasawa 82a8f5
 * software out there that uses it.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define JMETHOD(type, methodname, arglist)  type (*methodname) arglist
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* libjpeg-turbo no longer supports platforms that have far symbols (MS-DOS),
shun-iwasawa 82a8f5
 * but again, some software relies on this macro.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#undef FAR
shun-iwasawa 82a8f5
#define FAR
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * On a few systems, type boolean and/or its values FALSE, TRUE may appear
shun-iwasawa 82a8f5
 * in standard header files.  Or you may have conflicts with application-
shun-iwasawa 82a8f5
 * specific header files that you want to include together with these files.
shun-iwasawa 82a8f5
 * Defining HAVE_BOOLEAN before including jpeglib.h should make it work.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifndef HAVE_BOOLEAN
shun-iwasawa 82a8f5
typedef int boolean;
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
#ifndef FALSE                   /* in case these macros already exist */
shun-iwasawa 82a8f5
#define FALSE   0               /* values of boolean */
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
#ifndef TRUE
shun-iwasawa 82a8f5
#define TRUE    1
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * The remaining options affect code selection within the JPEG library,
shun-iwasawa 82a8f5
 * but they don't need to be visible to most applications using the library.
shun-iwasawa 82a8f5
 * To minimize application namespace pollution, the symbols won't be
shun-iwasawa 82a8f5
 * defined unless JPEG_INTERNALS or JPEG_INTERNAL_OPTIONS has been defined.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifdef JPEG_INTERNALS
shun-iwasawa 82a8f5
#define JPEG_INTERNAL_OPTIONS
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifdef JPEG_INTERNAL_OPTIONS
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * These defines indicate whether to include various optional functions.
shun-iwasawa 82a8f5
 * Undefining some of these symbols will produce a smaller but less capable
shun-iwasawa 82a8f5
 * library.  Note that you can leave certain source files out of the
shun-iwasawa 82a8f5
 * compilation/linking process if you've #undef'd the corresponding symbols.
shun-iwasawa 82a8f5
 * (You may HAVE to do that if your compiler doesn't like null source files.)
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Capability options common to encoder and decoder: */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define DCT_ISLOW_SUPPORTED     /* accurate integer method */
shun-iwasawa 82a8f5
#define DCT_IFAST_SUPPORTED     /* less accurate int method [legacy feature] */
shun-iwasawa 82a8f5
#define DCT_FLOAT_SUPPORTED     /* floating-point method [legacy feature] */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Encoder capability options: */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
shun-iwasawa 82a8f5
#define C_PROGRESSIVE_SUPPORTED     /* Progressive JPEG? (Requires MULTISCAN)*/
shun-iwasawa 82a8f5
#define ENTROPY_OPT_SUPPORTED       /* Optimization of entropy coding parms? */
shun-iwasawa 82a8f5
/* Note: if you selected 12-bit data precision, it is dangerous to turn off
shun-iwasawa 82a8f5
 * ENTROPY_OPT_SUPPORTED.  The standard Huffman tables are only good for 8-bit
shun-iwasawa 82a8f5
 * precision, so jchuff.c normally uses entropy optimization to compute
shun-iwasawa 82a8f5
 * usable tables for higher precision.  If you don't want to do optimization,
shun-iwasawa 82a8f5
 * you'll have to supply different default Huffman tables.
shun-iwasawa 82a8f5
 * The exact same statements apply for progressive JPEG: the default tables
shun-iwasawa 82a8f5
 * don't work for progressive mode.  (This may get fixed, however.)
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
#define INPUT_SMOOTHING_SUPPORTED   /* Input image smoothing option? */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Decoder capability options: */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
shun-iwasawa 82a8f5
#define D_PROGRESSIVE_SUPPORTED     /* Progressive JPEG? (Requires MULTISCAN)*/
shun-iwasawa 82a8f5
#define SAVE_MARKERS_SUPPORTED      /* jpeg_save_markers() needed? */
shun-iwasawa 82a8f5
#define BLOCK_SMOOTHING_SUPPORTED   /* Block smoothing? (Progressive only) */
shun-iwasawa 82a8f5
#define IDCT_SCALING_SUPPORTED      /* Output rescaling via IDCT? */
shun-iwasawa 82a8f5
#undef  UPSAMPLE_SCALING_SUPPORTED  /* Output rescaling at upsample stage? */
shun-iwasawa 82a8f5
#define UPSAMPLE_MERGING_SUPPORTED  /* Fast path for sloppy upsampling? */
shun-iwasawa 82a8f5
#define QUANT_1PASS_SUPPORTED       /* 1-pass color quantization? */
shun-iwasawa 82a8f5
#define QUANT_2PASS_SUPPORTED       /* 2-pass color quantization? */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* more capability options later, no doubt */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * The RGB_RED, RGB_GREEN, RGB_BLUE, and RGB_PIXELSIZE macros are a vestigial
shun-iwasawa 82a8f5
 * feature of libjpeg.  The idea was that, if an application developer needed
shun-iwasawa 82a8f5
 * to compress from/decompress to a BGR/BGRX/RGBX/XBGR/XRGB buffer, they could
shun-iwasawa 82a8f5
 * change these macros, rebuild libjpeg, and link their application statically
shun-iwasawa 82a8f5
 * with it.  In reality, few people ever did this, because there were some
shun-iwasawa 82a8f5
 * severe restrictions involved (cjpeg and djpeg no longer worked properly,
shun-iwasawa 82a8f5
 * compressing/decompressing RGB JPEGs no longer worked properly, and the color
shun-iwasawa 82a8f5
 * quantizer wouldn't work with pixel sizes other than 3.)  Furthermore, since
shun-iwasawa 82a8f5
 * all of the O/S-supplied versions of libjpeg were built with the default
shun-iwasawa 82a8f5
 * values of RGB_RED, RGB_GREEN, RGB_BLUE, and RGB_PIXELSIZE, many applications
shun-iwasawa 82a8f5
 * have come to regard these values as immutable.
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * The libjpeg-turbo colorspace extensions provide a much cleaner way of
shun-iwasawa 82a8f5
 * compressing from/decompressing to buffers with arbitrary component orders
shun-iwasawa 82a8f5
 * and pixel sizes.  Thus, we do not support changing the values of RGB_RED,
shun-iwasawa 82a8f5
 * RGB_GREEN, RGB_BLUE, or RGB_PIXELSIZE.  In addition to the restrictions
shun-iwasawa 82a8f5
 * listed above, changing these values will also break the SIMD extensions and
shun-iwasawa 82a8f5
 * the regression tests.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define RGB_RED         0       /* Offset of Red in an RGB scanline element */
shun-iwasawa 82a8f5
#define RGB_GREEN       1       /* Offset of Green */
shun-iwasawa 82a8f5
#define RGB_BLUE        2       /* Offset of Blue */
shun-iwasawa 82a8f5
#define RGB_PIXELSIZE   3       /* JSAMPLEs per RGB scanline element */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define JPEG_NUMCS  17
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define EXT_RGB_RED         0
shun-iwasawa 82a8f5
#define EXT_RGB_GREEN       1
shun-iwasawa 82a8f5
#define EXT_RGB_BLUE        2
shun-iwasawa 82a8f5
#define EXT_RGB_PIXELSIZE   3
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define EXT_RGBX_RED        0
shun-iwasawa 82a8f5
#define EXT_RGBX_GREEN      1
shun-iwasawa 82a8f5
#define EXT_RGBX_BLUE       2
shun-iwasawa 82a8f5
#define EXT_RGBX_PIXELSIZE  4
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define EXT_BGR_RED         2
shun-iwasawa 82a8f5
#define EXT_BGR_GREEN       1
shun-iwasawa 82a8f5
#define EXT_BGR_BLUE        0
shun-iwasawa 82a8f5
#define EXT_BGR_PIXELSIZE   3
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define EXT_BGRX_RED        2
shun-iwasawa 82a8f5
#define EXT_BGRX_GREEN      1
shun-iwasawa 82a8f5
#define EXT_BGRX_BLUE       0
shun-iwasawa 82a8f5
#define EXT_BGRX_PIXELSIZE  4
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define EXT_XBGR_RED        3
shun-iwasawa 82a8f5
#define EXT_XBGR_GREEN      2
shun-iwasawa 82a8f5
#define EXT_XBGR_BLUE       1
shun-iwasawa 82a8f5
#define EXT_XBGR_PIXELSIZE  4
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define EXT_XRGB_RED        1
shun-iwasawa 82a8f5
#define EXT_XRGB_GREEN      2
shun-iwasawa 82a8f5
#define EXT_XRGB_BLUE       3
shun-iwasawa 82a8f5
#define EXT_XRGB_PIXELSIZE  4
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
static const int rgb_red[JPEG_NUMCS] = {
shun-iwasawa 82a8f5
  -1, -1, RGB_RED, -1, -1, -1, EXT_RGB_RED, EXT_RGBX_RED,
shun-iwasawa 82a8f5
  EXT_BGR_RED, EXT_BGRX_RED, EXT_XBGR_RED, EXT_XRGB_RED,
shun-iwasawa 82a8f5
  EXT_RGBX_RED, EXT_BGRX_RED, EXT_XBGR_RED, EXT_XRGB_RED,
shun-iwasawa 82a8f5
  -1
shun-iwasawa 82a8f5
};
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
static const int rgb_green[JPEG_NUMCS] = {
shun-iwasawa 82a8f5
  -1, -1, RGB_GREEN, -1, -1, -1, EXT_RGB_GREEN, EXT_RGBX_GREEN,
shun-iwasawa 82a8f5
  EXT_BGR_GREEN, EXT_BGRX_GREEN, EXT_XBGR_GREEN, EXT_XRGB_GREEN,
shun-iwasawa 82a8f5
  EXT_RGBX_GREEN, EXT_BGRX_GREEN, EXT_XBGR_GREEN, EXT_XRGB_GREEN,
shun-iwasawa 82a8f5
  -1
shun-iwasawa 82a8f5
};
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
static const int rgb_blue[JPEG_NUMCS] = {
shun-iwasawa 82a8f5
  -1, -1, RGB_BLUE, -1, -1, -1, EXT_RGB_BLUE, EXT_RGBX_BLUE,
shun-iwasawa 82a8f5
  EXT_BGR_BLUE, EXT_BGRX_BLUE, EXT_XBGR_BLUE, EXT_XRGB_BLUE,
shun-iwasawa 82a8f5
  EXT_RGBX_BLUE, EXT_BGRX_BLUE, EXT_XBGR_BLUE, EXT_XRGB_BLUE,
shun-iwasawa 82a8f5
  -1
shun-iwasawa 82a8f5
};
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
static const int rgb_pixelsize[JPEG_NUMCS] = {
shun-iwasawa 82a8f5
  -1, -1, RGB_PIXELSIZE, -1, -1, -1, EXT_RGB_PIXELSIZE, EXT_RGBX_PIXELSIZE,
shun-iwasawa 82a8f5
  EXT_BGR_PIXELSIZE, EXT_BGRX_PIXELSIZE, EXT_XBGR_PIXELSIZE, EXT_XRGB_PIXELSIZE,
shun-iwasawa 82a8f5
  EXT_RGBX_PIXELSIZE, EXT_BGRX_PIXELSIZE, EXT_XBGR_PIXELSIZE, EXT_XRGB_PIXELSIZE,
shun-iwasawa 82a8f5
  -1
shun-iwasawa 82a8f5
};
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Definitions for speed-related optimizations. */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* On some machines (notably 68000 series) "int" is 32 bits, but multiplying
shun-iwasawa 82a8f5
 * two 16-bit shorts is faster than multiplying two ints.  Define MULTIPLIER
shun-iwasawa 82a8f5
 * as short on such a machine.  MULTIPLIER must be at least 16 bits wide.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifndef MULTIPLIER
shun-iwasawa 82a8f5
#ifndef WITH_SIMD
shun-iwasawa 82a8f5
#define MULTIPLIER  int         /* type for fastest integer multiply */
shun-iwasawa 82a8f5
#else
shun-iwasawa 82a8f5
#define MULTIPLIER  short       /* prefer 16-bit with SIMD for parellelism */
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* FAST_FLOAT should be either float or double, whichever is done faster
shun-iwasawa 82a8f5
 * by your compiler.  (Note that this type is only used in the floating point
shun-iwasawa 82a8f5
 * DCT routines, so it only matters if you've defined DCT_FLOAT_SUPPORTED.)
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifndef FAST_FLOAT
shun-iwasawa 82a8f5
#define FAST_FLOAT  float
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#endif /* JPEG_INTERNAL_OPTIONS */