blob: 806d6a474bbc2da335cf0021890456c005da1458 [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * jmorecfg.h
3 *
DRCa73e8702012-12-31 02:52:30 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00005 * Copyright (C) 1991-1997, Thomas G. Lane.
DRCc23e36e2015-07-06 16:04:04 +00006 * Modified 1997-2009 by Guido Vollbeding.
DRCda13af62014-05-18 17:52:06 +00007 * libjpeg-turbo Modifications:
DRC8e9cef22015-09-21 12:57:41 -05008 * Copyright (C) 2009, 2011, 2014-2015, D. R. Commander.
DRC7e3acc02015-10-10 10:25:46 -05009 * For conditions of distribution and use, see the accompanying README.ijg
10 * file.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000011 *
12 * This file contains additional configuration options that customize the
13 * JPEG software for special applications or support machine-dependent
14 * optimizations. Most users will not need to touch this file.
15 */
16
17
18/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000019 * Maximum number of components (color channels) allowed in JPEG image.
20 * To meet the letter of the JPEG spec, set this to 255. However, darn
21 * few applications need more than 4 channels (maybe 5 for CMYK + alpha
22 * mask). We recommend 10 as a reasonable compromise; use 4 if you are
23 * really short on memory. (Each allowed component costs a hundred or so
24 * bytes of storage, whether actually used in an image or not.)
25 */
26
DRCe5eaf372014-05-09 18:00:32 +000027#define MAX_COMPONENTS 10 /* maximum number of image components */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000028
29
30/*
31 * Basic data types.
32 * You may need to change these if you have a machine with unusual data
33 * type sizes; for example, "char" not 8 bits, "short" not 16 bits,
34 * or "long" not 32 bits. We don't care whether "int" is 16 or 32 bits,
35 * but it had better be at least 16.
36 */
37
38/* Representation of a single sample (pixel element value).
39 * We frequently allocate large arrays of these, so it's important to keep
40 * them small. But if you have memory to burn and access to char or short
41 * arrays is very slow on your hardware, you might want to change these.
42 */
43
44#if BITS_IN_JSAMPLE == 8
45/* JSAMPLE should be the smallest type that will hold the values 0..255.
46 * You can use a signed char by having GETJSAMPLE mask it with 0xFF.
47 */
48
49#ifdef HAVE_UNSIGNED_CHAR
50
51typedef unsigned char JSAMPLE;
52#define GETJSAMPLE(value) ((int) (value))
53
54#else /* not HAVE_UNSIGNED_CHAR */
55
56typedef char JSAMPLE;
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000057#ifdef __CHAR_UNSIGNED__
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000058#define GETJSAMPLE(value) ((int) (value))
59#else
60#define GETJSAMPLE(value) ((int) (value) & 0xFF)
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000061#endif /* __CHAR_UNSIGNED__ */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000062
63#endif /* HAVE_UNSIGNED_CHAR */
64
DRCe5eaf372014-05-09 18:00:32 +000065#define MAXJSAMPLE 255
66#define CENTERJSAMPLE 128
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000067
68#endif /* BITS_IN_JSAMPLE == 8 */
69
70
71#if BITS_IN_JSAMPLE == 12
72/* JSAMPLE should be the smallest type that will hold the values 0..4095.
73 * On nearly all machines "short" will do nicely.
74 */
75
76typedef short JSAMPLE;
77#define GETJSAMPLE(value) ((int) (value))
78
DRCe5eaf372014-05-09 18:00:32 +000079#define MAXJSAMPLE 4095
80#define CENTERJSAMPLE 2048
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000081
82#endif /* BITS_IN_JSAMPLE == 12 */
83
84
85/* Representation of a DCT frequency coefficient.
86 * This should be a signed value of at least 16 bits; "short" is usually OK.
87 * Again, we allocate large arrays of these, but you can change to int
88 * if you have memory to burn and "short" is really slow.
89 */
90
91typedef short JCOEF;
92
93
94/* Compressed datastreams are represented as arrays of JOCTET.
95 * These must be EXACTLY 8 bits wide, at least once they are written to
96 * external storage. Note that when using the stdio data source/destination
97 * managers, this is also the data type passed to fread/fwrite.
98 */
99
100#ifdef HAVE_UNSIGNED_CHAR
101
102typedef unsigned char JOCTET;
103#define GETJOCTET(value) (value)
104
105#else /* not HAVE_UNSIGNED_CHAR */
106
107typedef char JOCTET;
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000108#ifdef __CHAR_UNSIGNED__
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000109#define GETJOCTET(value) (value)
110#else
111#define GETJOCTET(value) ((value) & 0xFF)
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000112#endif /* __CHAR_UNSIGNED__ */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000113
114#endif /* HAVE_UNSIGNED_CHAR */
115
116
117/* These typedefs are used for various table entries and so forth.
118 * They must be at least as wide as specified; but making them too big
119 * won't cost a huge amount of memory, so we don't provide special
120 * extraction code like we did for JSAMPLE. (In other words, these
121 * typedefs live at a different point on the speed/space tradeoff curve.)
122 */
123
124/* UINT8 must hold at least the values 0..255. */
125
126#ifdef HAVE_UNSIGNED_CHAR
127typedef unsigned char UINT8;
128#else /* not HAVE_UNSIGNED_CHAR */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000129#ifdef __CHAR_UNSIGNED__
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000130typedef char UINT8;
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000131#else /* not __CHAR_UNSIGNED__ */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000132typedef short UINT8;
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000133#endif /* __CHAR_UNSIGNED__ */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000134#endif /* HAVE_UNSIGNED_CHAR */
135
136/* UINT16 must hold at least the values 0..65535. */
137
138#ifdef HAVE_UNSIGNED_SHORT
139typedef unsigned short UINT16;
140#else /* not HAVE_UNSIGNED_SHORT */
141typedef unsigned int UINT16;
142#endif /* HAVE_UNSIGNED_SHORT */
143
144/* INT16 must hold at least the values -32768..32767. */
145
DRCe5eaf372014-05-09 18:00:32 +0000146#ifndef XMD_H /* X11/xmd.h correctly defines INT16 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000147typedef short INT16;
148#endif
149
150/* INT32 must hold at least signed 32-bit values. */
151
DRCe5eaf372014-05-09 18:00:32 +0000152#ifndef XMD_H /* X11/xmd.h correctly defines INT32 */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000153#ifndef _BASETSD_H_ /* Microsoft defines it in basetsd.h */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000154#ifndef _BASETSD_H /* MinGW is slightly different */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000155#ifndef QGLOBAL_H /* Qt defines it in qglobal.h */
DRC8e9cef22015-09-21 12:57:41 -0500156#define __INT32_IS_ACTUALLY_LONG
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000157typedef long INT32;
158#endif
Guido Vollbeding5996a252009-06-27 00:00:00 +0000159#endif
160#endif
Guido Vollbeding989630f2010-01-10 00:00:00 +0000161#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000162
163/* Datatype used for image dimensions. The JPEG standard only supports
164 * images up to 64K*64K due to 16-bit fields in SOF markers. Therefore
165 * "unsigned int" is sufficient on all machines. However, if you need to
166 * handle larger images and you don't mind deviating from the spec, you
Chandler Carruth498d9bc2015-09-15 11:57:03 -0700167 * can change this datatype. (Note that changing this datatype will
168 * potentially require modifying the SIMD code. The x86-64 SIMD extensions,
169 * in particular, assume a 32-bit JDIMENSION.)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000170 */
171
172typedef unsigned int JDIMENSION;
173
174#define JPEG_MAX_DIMENSION 65500L /* a tad under 64K to prevent overflows */
175
176
Thomas G. Lane489583f1996-02-07 00:00:00 +0000177/* These macros are used in all function definitions and extern declarations.
178 * You could modify them if you need to change function linkage conventions;
179 * in particular, you'll need to do that to make the library a Windows DLL.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000180 * Another application is to make all functions global for use with debuggers
181 * or code profilers that require it.
182 */
183
Thomas G. Lane489583f1996-02-07 00:00:00 +0000184/* a function called through method pointers: */
DRCe5eaf372014-05-09 18:00:32 +0000185#define METHODDEF(type) static type
Thomas G. Lane489583f1996-02-07 00:00:00 +0000186/* a function used only in its module: */
DRCe5eaf372014-05-09 18:00:32 +0000187#define LOCAL(type) static type
Thomas G. Lane489583f1996-02-07 00:00:00 +0000188/* a function referenced thru EXTERNs: */
DRCe5eaf372014-05-09 18:00:32 +0000189#define GLOBAL(type) type
Thomas G. Lane489583f1996-02-07 00:00:00 +0000190/* a reference to a GLOBAL function: */
DRCe5eaf372014-05-09 18:00:32 +0000191#define EXTERN(type) extern type
Thomas G. Lane489583f1996-02-07 00:00:00 +0000192
193
DRCe2dd3e32014-11-25 09:48:15 +0000194/* Originally, this macro was used as a way of defining function prototypes
195 * for both modern compilers as well as older compilers that did not support
DRC2a6b8312014-11-25 10:07:43 +0000196 * prototype parameters. libjpeg-turbo has never supported these older,
197 * non-ANSI compilers, but the macro is still included because there is some
198 * software out there that uses it.
DRCe2dd3e32014-11-25 09:48:15 +0000199 */
200
201#define JMETHOD(type,methodname,arglist) type (*methodname) arglist
202
203
DRC2a6b8312014-11-25 10:07:43 +0000204/* libjpeg-turbo no longer supports platforms that have far symbols (MS-DOS),
205 * but again, some software relies on this macro.
206 */
207
208#undef FAR
209#define FAR
210
211
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000212/*
213 * On a few systems, type boolean and/or its values FALSE, TRUE may appear
214 * in standard header files. Or you may have conflicts with application-
215 * specific header files that you want to include together with these files.
216 * Defining HAVE_BOOLEAN before including jpeglib.h should make it work.
217 */
218
219#ifndef HAVE_BOOLEAN
220typedef int boolean;
221#endif
DRCe5eaf372014-05-09 18:00:32 +0000222#ifndef FALSE /* in case these macros already exist */
223#define FALSE 0 /* values of boolean */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000224#endif
225#ifndef TRUE
DRCe5eaf372014-05-09 18:00:32 +0000226#define TRUE 1
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000227#endif
228
229
230/*
231 * The remaining options affect code selection within the JPEG library,
232 * but they don't need to be visible to most applications using the library.
233 * To minimize application namespace pollution, the symbols won't be
234 * defined unless JPEG_INTERNALS or JPEG_INTERNAL_OPTIONS has been defined.
235 */
236
237#ifdef JPEG_INTERNALS
238#define JPEG_INTERNAL_OPTIONS
239#endif
240
241#ifdef JPEG_INTERNAL_OPTIONS
242
243
244/*
245 * These defines indicate whether to include various optional functions.
246 * Undefining some of these symbols will produce a smaller but less capable
247 * library. Note that you can leave certain source files out of the
248 * compilation/linking process if you've #undef'd the corresponding symbols.
249 * (You may HAVE to do that if your compiler doesn't like null source files.)
250 */
251
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000252/* Capability options common to encoder and decoder: */
253
DRCe5eaf372014-05-09 18:00:32 +0000254#define DCT_ISLOW_SUPPORTED /* slow but accurate integer algorithm */
255#define DCT_IFAST_SUPPORTED /* faster, less accurate integer method */
256#define DCT_FLOAT_SUPPORTED /* floating-point: accurate, fast on fast HW */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000257
258/* Encoder capability options: */
259
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000260#define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
DRCe5eaf372014-05-09 18:00:32 +0000261#define C_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/
262#define ENTROPY_OPT_SUPPORTED /* Optimization of entropy coding parms? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000263/* Note: if you selected 12-bit data precision, it is dangerous to turn off
264 * ENTROPY_OPT_SUPPORTED. The standard Huffman tables are only good for 8-bit
265 * precision, so jchuff.c normally uses entropy optimization to compute
266 * usable tables for higher precision. If you don't want to do optimization,
267 * you'll have to supply different default Huffman tables.
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000268 * The exact same statements apply for progressive JPEG: the default tables
269 * don't work for progressive mode. (This may get fixed, however.)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000270 */
271#define INPUT_SMOOTHING_SUPPORTED /* Input image smoothing option? */
272
273/* Decoder capability options: */
274
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000275#define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
DRCe5eaf372014-05-09 18:00:32 +0000276#define D_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/
277#define SAVE_MARKERS_SUPPORTED /* jpeg_save_markers() needed? */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000278#define BLOCK_SMOOTHING_SUPPORTED /* Block smoothing? (Progressive only) */
DRCe5eaf372014-05-09 18:00:32 +0000279#define IDCT_SCALING_SUPPORTED /* Output rescaling via IDCT? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000280#undef UPSAMPLE_SCALING_SUPPORTED /* Output rescaling at upsample stage? */
281#define UPSAMPLE_MERGING_SUPPORTED /* Fast path for sloppy upsampling? */
DRCe5eaf372014-05-09 18:00:32 +0000282#define QUANT_1PASS_SUPPORTED /* 1-pass color quantization? */
283#define QUANT_2PASS_SUPPORTED /* 2-pass color quantization? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000284
285/* more capability options later, no doubt */
286
287
288/*
DRC976fd962014-05-13 18:41:33 +0000289 * The RGB_RED, RGB_GREEN, RGB_BLUE, and RGB_PIXELSIZE macros are a vestigial
290 * feature of libjpeg. The idea was that, if an application developer needed
291 * to compress from/decompress to a BGR/BGRX/RGBX/XBGR/XRGB buffer, they could
292 * change these macros, rebuild libjpeg, and link their application statically
293 * with it. In reality, few people ever did this, because there were some
294 * severe restrictions involved (cjpeg and djpeg no longer worked properly,
295 * compressing/decompressing RGB JPEGs no longer worked properly, and the color
296 * quantizer wouldn't work with pixel sizes other than 3.) Further, since all
297 * of the O/S-supplied versions of libjpeg were built with the default values
298 * of RGB_RED, RGB_GREEN, RGB_BLUE, and RGB_PIXELSIZE, many applications have
299 * come to regard these values as immutable.
300 *
301 * The libjpeg-turbo colorspace extensions provide a much cleaner way of
302 * compressing from/decompressing to buffers with arbitrary component orders
303 * and pixel sizes. Thus, we do not support changing the values of RGB_RED,
304 * RGB_GREEN, RGB_BLUE, or RGB_PIXELSIZE. In addition to the restrictions
305 * listed above, changing these values will also break the SIMD extensions and
306 * the regression tests.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000307 */
308
DRCe5eaf372014-05-09 18:00:32 +0000309#define RGB_RED 0 /* Offset of Red in an RGB scanline element */
310#define RGB_GREEN 1 /* Offset of Green */
311#define RGB_BLUE 2 /* Offset of Blue */
312#define RGB_PIXELSIZE 3 /* JSAMPLEs per RGB scanline element */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000313
DRC78df2e62014-05-12 09:23:57 +0000314#define JPEG_NUMCS 17
DRCf25c0712009-04-03 12:00:51 +0000315
DRCb4570bb2011-09-07 06:31:00 +0000316#define EXT_RGB_RED 0
317#define EXT_RGB_GREEN 1
318#define EXT_RGB_BLUE 2
319#define EXT_RGB_PIXELSIZE 3
320
321#define EXT_RGBX_RED 0
322#define EXT_RGBX_GREEN 1
323#define EXT_RGBX_BLUE 2
324#define EXT_RGBX_PIXELSIZE 4
325
326#define EXT_BGR_RED 2
327#define EXT_BGR_GREEN 1
328#define EXT_BGR_BLUE 0
329#define EXT_BGR_PIXELSIZE 3
330
331#define EXT_BGRX_RED 2
332#define EXT_BGRX_GREEN 1
333#define EXT_BGRX_BLUE 0
334#define EXT_BGRX_PIXELSIZE 4
335
336#define EXT_XBGR_RED 3
337#define EXT_XBGR_GREEN 2
338#define EXT_XBGR_BLUE 1
339#define EXT_XBGR_PIXELSIZE 4
340
341#define EXT_XRGB_RED 1
342#define EXT_XRGB_GREEN 2
343#define EXT_XRGB_BLUE 3
344#define EXT_XRGB_PIXELSIZE 4
345
DRCf25c0712009-04-03 12:00:51 +0000346static const int rgb_red[JPEG_NUMCS] = {
DRCb4570bb2011-09-07 06:31:00 +0000347 -1, -1, RGB_RED, -1, -1, -1, EXT_RGB_RED, EXT_RGBX_RED,
DRC67ce3b22011-12-19 02:21:03 +0000348 EXT_BGR_RED, EXT_BGRX_RED, EXT_XBGR_RED, EXT_XRGB_RED,
DRC78df2e62014-05-12 09:23:57 +0000349 EXT_RGBX_RED, EXT_BGRX_RED, EXT_XBGR_RED, EXT_XRGB_RED,
350 -1
DRCf25c0712009-04-03 12:00:51 +0000351};
352
353static const int rgb_green[JPEG_NUMCS] = {
DRCb4570bb2011-09-07 06:31:00 +0000354 -1, -1, RGB_GREEN, -1, -1, -1, EXT_RGB_GREEN, EXT_RGBX_GREEN,
DRC67ce3b22011-12-19 02:21:03 +0000355 EXT_BGR_GREEN, EXT_BGRX_GREEN, EXT_XBGR_GREEN, EXT_XRGB_GREEN,
DRC78df2e62014-05-12 09:23:57 +0000356 EXT_RGBX_GREEN, EXT_BGRX_GREEN, EXT_XBGR_GREEN, EXT_XRGB_GREEN,
357 -1
DRCf25c0712009-04-03 12:00:51 +0000358};
359
360static const int rgb_blue[JPEG_NUMCS] = {
DRCb4570bb2011-09-07 06:31:00 +0000361 -1, -1, RGB_BLUE, -1, -1, -1, EXT_RGB_BLUE, EXT_RGBX_BLUE,
DRC67ce3b22011-12-19 02:21:03 +0000362 EXT_BGR_BLUE, EXT_BGRX_BLUE, EXT_XBGR_BLUE, EXT_XRGB_BLUE,
DRC78df2e62014-05-12 09:23:57 +0000363 EXT_RGBX_BLUE, EXT_BGRX_BLUE, EXT_XBGR_BLUE, EXT_XRGB_BLUE,
364 -1
DRCf25c0712009-04-03 12:00:51 +0000365};
366
367static const int rgb_pixelsize[JPEG_NUMCS] = {
DRCb4570bb2011-09-07 06:31:00 +0000368 -1, -1, RGB_PIXELSIZE, -1, -1, -1, EXT_RGB_PIXELSIZE, EXT_RGBX_PIXELSIZE,
DRC67ce3b22011-12-19 02:21:03 +0000369 EXT_BGR_PIXELSIZE, EXT_BGRX_PIXELSIZE, EXT_XBGR_PIXELSIZE, EXT_XRGB_PIXELSIZE,
DRC78df2e62014-05-12 09:23:57 +0000370 EXT_RGBX_PIXELSIZE, EXT_BGRX_PIXELSIZE, EXT_XBGR_PIXELSIZE, EXT_XRGB_PIXELSIZE,
371 -1
DRCf25c0712009-04-03 12:00:51 +0000372};
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000373
374/* Definitions for speed-related optimizations. */
375
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000376/* On some machines (notably 68000 series) "int" is 32 bits, but multiplying
377 * two 16-bit shorts is faster than multiplying two ints. Define MULTIPLIER
378 * as short on such a machine. MULTIPLIER must be at least 16 bits wide.
379 */
380
381#ifndef MULTIPLIER
Pierre Ossman5eb84ff2009-03-09 13:25:30 +0000382#ifndef WITH_SIMD
DRCe5eaf372014-05-09 18:00:32 +0000383#define MULTIPLIER int /* type for fastest integer multiply */
Pierre Ossman5eb84ff2009-03-09 13:25:30 +0000384#else
385#define MULTIPLIER short /* prefer 16-bit with SIMD for parellelism */
386#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000387#endif
388
389
390/* FAST_FLOAT should be either float or double, whichever is done faster
391 * by your compiler. (Note that this type is only used in the floating point
392 * DCT routines, so it only matters if you've defined DCT_FLOAT_SUPPORTED.)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000393 */
394
395#ifndef FAST_FLOAT
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000396#define FAST_FLOAT float
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000397#endif
398
399#endif /* JPEG_INTERNAL_OPTIONS */