blob: 477675782db8321349411affd4af072c42757a5a [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.
DRCda13af62014-05-18 17:52:06 +00006 * libjpeg-turbo Modifications:
DRC78df2e62014-05-12 09:23:57 +00007 * Copyright (C) 2009, 2011, 2014, D. R. Commander.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00008 * For conditions of distribution and use, see the accompanying README file.
9 *
10 * This file contains additional configuration options that customize the
11 * JPEG software for special applications or support machine-dependent
12 * optimizations. Most users will not need to touch this file.
13 */
14
15
16/*
17 * Define BITS_IN_JSAMPLE as either
18 * 8 for 8-bit sample values (the usual setting)
19 * 12 for 12-bit sample values
20 * Only 8 and 12 are legal data precisions for lossy JPEG according to the
21 * JPEG standard, and the IJG code does not support anything else!
22 * We do not support run-time selection of data precision, sorry.
23 */
24
DRCe5eaf372014-05-09 18:00:32 +000025#define BITS_IN_JSAMPLE 8 /* use 8 or 12 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000026
27
28/*
29 * Maximum number of components (color channels) allowed in JPEG image.
30 * To meet the letter of the JPEG spec, set this to 255. However, darn
31 * few applications need more than 4 channels (maybe 5 for CMYK + alpha
32 * mask). We recommend 10 as a reasonable compromise; use 4 if you are
33 * really short on memory. (Each allowed component costs a hundred or so
34 * bytes of storage, whether actually used in an image or not.)
35 */
36
DRCe5eaf372014-05-09 18:00:32 +000037#define MAX_COMPONENTS 10 /* maximum number of image components */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000038
39
40/*
41 * Basic data types.
42 * You may need to change these if you have a machine with unusual data
43 * type sizes; for example, "char" not 8 bits, "short" not 16 bits,
44 * or "long" not 32 bits. We don't care whether "int" is 16 or 32 bits,
45 * but it had better be at least 16.
46 */
47
48/* Representation of a single sample (pixel element value).
49 * We frequently allocate large arrays of these, so it's important to keep
50 * them small. But if you have memory to burn and access to char or short
51 * arrays is very slow on your hardware, you might want to change these.
52 */
53
54#if BITS_IN_JSAMPLE == 8
55/* JSAMPLE should be the smallest type that will hold the values 0..255.
56 * You can use a signed char by having GETJSAMPLE mask it with 0xFF.
57 */
58
59#ifdef HAVE_UNSIGNED_CHAR
60
61typedef unsigned char JSAMPLE;
62#define GETJSAMPLE(value) ((int) (value))
63
64#else /* not HAVE_UNSIGNED_CHAR */
65
66typedef char JSAMPLE;
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000067#ifdef __CHAR_UNSIGNED__
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000068#define GETJSAMPLE(value) ((int) (value))
69#else
70#define GETJSAMPLE(value) ((int) (value) & 0xFF)
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000071#endif /* __CHAR_UNSIGNED__ */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000072
73#endif /* HAVE_UNSIGNED_CHAR */
74
DRCe5eaf372014-05-09 18:00:32 +000075#define MAXJSAMPLE 255
76#define CENTERJSAMPLE 128
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000077
78#endif /* BITS_IN_JSAMPLE == 8 */
79
80
81#if BITS_IN_JSAMPLE == 12
82/* JSAMPLE should be the smallest type that will hold the values 0..4095.
83 * On nearly all machines "short" will do nicely.
84 */
85
86typedef short JSAMPLE;
87#define GETJSAMPLE(value) ((int) (value))
88
DRCe5eaf372014-05-09 18:00:32 +000089#define MAXJSAMPLE 4095
90#define CENTERJSAMPLE 2048
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000091
92#endif /* BITS_IN_JSAMPLE == 12 */
93
94
95/* Representation of a DCT frequency coefficient.
96 * This should be a signed value of at least 16 bits; "short" is usually OK.
97 * Again, we allocate large arrays of these, but you can change to int
98 * if you have memory to burn and "short" is really slow.
99 */
100
101typedef short JCOEF;
102
103
104/* Compressed datastreams are represented as arrays of JOCTET.
105 * These must be EXACTLY 8 bits wide, at least once they are written to
106 * external storage. Note that when using the stdio data source/destination
107 * managers, this is also the data type passed to fread/fwrite.
108 */
109
110#ifdef HAVE_UNSIGNED_CHAR
111
112typedef unsigned char JOCTET;
113#define GETJOCTET(value) (value)
114
115#else /* not HAVE_UNSIGNED_CHAR */
116
117typedef char JOCTET;
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000118#ifdef __CHAR_UNSIGNED__
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000119#define GETJOCTET(value) (value)
120#else
121#define GETJOCTET(value) ((value) & 0xFF)
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000122#endif /* __CHAR_UNSIGNED__ */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000123
124#endif /* HAVE_UNSIGNED_CHAR */
125
126
127/* These typedefs are used for various table entries and so forth.
128 * They must be at least as wide as specified; but making them too big
129 * won't cost a huge amount of memory, so we don't provide special
130 * extraction code like we did for JSAMPLE. (In other words, these
131 * typedefs live at a different point on the speed/space tradeoff curve.)
132 */
133
134/* UINT8 must hold at least the values 0..255. */
135
136#ifdef HAVE_UNSIGNED_CHAR
137typedef unsigned char UINT8;
138#else /* not HAVE_UNSIGNED_CHAR */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000139#ifdef __CHAR_UNSIGNED__
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000140typedef char UINT8;
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000141#else /* not __CHAR_UNSIGNED__ */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000142typedef short UINT8;
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000143#endif /* __CHAR_UNSIGNED__ */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000144#endif /* HAVE_UNSIGNED_CHAR */
145
146/* UINT16 must hold at least the values 0..65535. */
147
148#ifdef HAVE_UNSIGNED_SHORT
149typedef unsigned short UINT16;
150#else /* not HAVE_UNSIGNED_SHORT */
151typedef unsigned int UINT16;
152#endif /* HAVE_UNSIGNED_SHORT */
153
154/* INT16 must hold at least the values -32768..32767. */
155
DRCe5eaf372014-05-09 18:00:32 +0000156#ifndef XMD_H /* X11/xmd.h correctly defines INT16 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000157typedef short INT16;
158#endif
159
160/* INT32 must hold at least signed 32-bit values. */
161
DRCe5eaf372014-05-09 18:00:32 +0000162#ifndef XMD_H /* X11/xmd.h correctly defines INT32 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000163typedef long INT32;
164#endif
165
166/* Datatype used for image dimensions. The JPEG standard only supports
167 * images up to 64K*64K due to 16-bit fields in SOF markers. Therefore
168 * "unsigned int" is sufficient on all machines. However, if you need to
169 * handle larger images and you don't mind deviating from the spec, you
170 * can change this datatype.
171 */
172
173typedef unsigned int JDIMENSION;
174
175#define JPEG_MAX_DIMENSION 65500L /* a tad under 64K to prevent overflows */
176
177
Thomas G. Lane489583f1996-02-07 00:00:00 +0000178/* These macros are used in all function definitions and extern declarations.
179 * You could modify them if you need to change function linkage conventions;
180 * in particular, you'll need to do that to make the library a Windows DLL.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000181 * Another application is to make all functions global for use with debuggers
182 * or code profilers that require it.
183 */
184
Thomas G. Lane489583f1996-02-07 00:00:00 +0000185/* a function called through method pointers: */
DRCe5eaf372014-05-09 18:00:32 +0000186#define METHODDEF(type) static type
Thomas G. Lane489583f1996-02-07 00:00:00 +0000187/* a function used only in its module: */
DRCe5eaf372014-05-09 18:00:32 +0000188#define LOCAL(type) static type
Thomas G. Lane489583f1996-02-07 00:00:00 +0000189/* a function referenced thru EXTERNs: */
DRCe5eaf372014-05-09 18:00:32 +0000190#define GLOBAL(type) type
Thomas G. Lane489583f1996-02-07 00:00:00 +0000191/* a reference to a GLOBAL function: */
DRCe5eaf372014-05-09 18:00:32 +0000192#define EXTERN(type) extern type
Thomas G. Lane489583f1996-02-07 00:00:00 +0000193
194
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000195/* Here is the pseudo-keyword for declaring pointers that must be "far"
196 * on 80x86 machines. Most of the specialized coding for 80x86 is handled
197 * by just saying "FAR *" where such a pointer is needed. In a few places
198 * explicit coding is needed; see uses of the NEED_FAR_POINTERS symbol.
199 */
200
201#ifdef NEED_FAR_POINTERS
DRCc168d962013-01-06 18:00:20 +0000202#ifndef FAR
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000203#define FAR far
DRCc168d962013-01-06 18:00:20 +0000204#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000205#else
DRCc168d962013-01-06 18:00:20 +0000206#undef FAR
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000207#define FAR
208#endif
209
210
211/*
212 * On a few systems, type boolean and/or its values FALSE, TRUE may appear
213 * in standard header files. Or you may have conflicts with application-
214 * specific header files that you want to include together with these files.
215 * Defining HAVE_BOOLEAN before including jpeglib.h should make it work.
216 */
217
218#ifndef HAVE_BOOLEAN
219typedef int boolean;
220#endif
DRCe5eaf372014-05-09 18:00:32 +0000221#ifndef FALSE /* in case these macros already exist */
222#define FALSE 0 /* values of boolean */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000223#endif
224#ifndef TRUE
DRCe5eaf372014-05-09 18:00:32 +0000225#define TRUE 1
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000226#endif
227
228
229/*
230 * The remaining options affect code selection within the JPEG library,
231 * but they don't need to be visible to most applications using the library.
232 * To minimize application namespace pollution, the symbols won't be
233 * defined unless JPEG_INTERNALS or JPEG_INTERNAL_OPTIONS has been defined.
234 */
235
236#ifdef JPEG_INTERNALS
237#define JPEG_INTERNAL_OPTIONS
238#endif
239
240#ifdef JPEG_INTERNAL_OPTIONS
241
242
243/*
244 * These defines indicate whether to include various optional functions.
245 * Undefining some of these symbols will produce a smaller but less capable
246 * library. Note that you can leave certain source files out of the
247 * compilation/linking process if you've #undef'd the corresponding symbols.
248 * (You may HAVE to do that if your compiler doesn't like null source files.)
249 */
250
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000251/* Capability options common to encoder and decoder: */
252
DRCe5eaf372014-05-09 18:00:32 +0000253#define DCT_ISLOW_SUPPORTED /* slow but accurate integer algorithm */
254#define DCT_IFAST_SUPPORTED /* faster, less accurate integer method */
255#define DCT_FLOAT_SUPPORTED /* floating-point: accurate, fast on fast HW */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000256
257/* Encoder capability options: */
258
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000259#define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
DRCe5eaf372014-05-09 18:00:32 +0000260#define C_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/
261#define ENTROPY_OPT_SUPPORTED /* Optimization of entropy coding parms? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000262/* Note: if you selected 12-bit data precision, it is dangerous to turn off
263 * ENTROPY_OPT_SUPPORTED. The standard Huffman tables are only good for 8-bit
264 * precision, so jchuff.c normally uses entropy optimization to compute
265 * usable tables for higher precision. If you don't want to do optimization,
266 * you'll have to supply different default Huffman tables.
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000267 * The exact same statements apply for progressive JPEG: the default tables
268 * don't work for progressive mode. (This may get fixed, however.)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000269 */
270#define INPUT_SMOOTHING_SUPPORTED /* Input image smoothing option? */
271
272/* Decoder capability options: */
273
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000274#define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
DRCe5eaf372014-05-09 18:00:32 +0000275#define D_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/
276#define SAVE_MARKERS_SUPPORTED /* jpeg_save_markers() needed? */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000277#define BLOCK_SMOOTHING_SUPPORTED /* Block smoothing? (Progressive only) */
DRCe5eaf372014-05-09 18:00:32 +0000278#define IDCT_SCALING_SUPPORTED /* Output rescaling via IDCT? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000279#undef UPSAMPLE_SCALING_SUPPORTED /* Output rescaling at upsample stage? */
280#define UPSAMPLE_MERGING_SUPPORTED /* Fast path for sloppy upsampling? */
DRCe5eaf372014-05-09 18:00:32 +0000281#define QUANT_1PASS_SUPPORTED /* 1-pass color quantization? */
282#define QUANT_2PASS_SUPPORTED /* 2-pass color quantization? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000283
284/* more capability options later, no doubt */
285
286
287/*
DRC976fd962014-05-13 18:41:33 +0000288 * The RGB_RED, RGB_GREEN, RGB_BLUE, and RGB_PIXELSIZE macros are a vestigial
289 * feature of libjpeg. The idea was that, if an application developer needed
290 * to compress from/decompress to a BGR/BGRX/RGBX/XBGR/XRGB buffer, they could
291 * change these macros, rebuild libjpeg, and link their application statically
292 * with it. In reality, few people ever did this, because there were some
293 * severe restrictions involved (cjpeg and djpeg no longer worked properly,
294 * compressing/decompressing RGB JPEGs no longer worked properly, and the color
295 * quantizer wouldn't work with pixel sizes other than 3.) Further, since all
296 * of the O/S-supplied versions of libjpeg were built with the default values
297 * of RGB_RED, RGB_GREEN, RGB_BLUE, and RGB_PIXELSIZE, many applications have
298 * come to regard these values as immutable.
299 *
300 * The libjpeg-turbo colorspace extensions provide a much cleaner way of
301 * compressing from/decompressing to buffers with arbitrary component orders
302 * and pixel sizes. Thus, we do not support changing the values of RGB_RED,
303 * RGB_GREEN, RGB_BLUE, or RGB_PIXELSIZE. In addition to the restrictions
304 * listed above, changing these values will also break the SIMD extensions and
305 * the regression tests.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000306 */
307
DRCe5eaf372014-05-09 18:00:32 +0000308#define RGB_RED 0 /* Offset of Red in an RGB scanline element */
309#define RGB_GREEN 1 /* Offset of Green */
310#define RGB_BLUE 2 /* Offset of Blue */
311#define RGB_PIXELSIZE 3 /* JSAMPLEs per RGB scanline element */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000312
DRC78df2e62014-05-12 09:23:57 +0000313#define JPEG_NUMCS 17
DRCf25c0712009-04-03 12:00:51 +0000314
DRCb4570bb2011-09-07 06:31:00 +0000315#define EXT_RGB_RED 0
316#define EXT_RGB_GREEN 1
317#define EXT_RGB_BLUE 2
318#define EXT_RGB_PIXELSIZE 3
319
320#define EXT_RGBX_RED 0
321#define EXT_RGBX_GREEN 1
322#define EXT_RGBX_BLUE 2
323#define EXT_RGBX_PIXELSIZE 4
324
325#define EXT_BGR_RED 2
326#define EXT_BGR_GREEN 1
327#define EXT_BGR_BLUE 0
328#define EXT_BGR_PIXELSIZE 3
329
330#define EXT_BGRX_RED 2
331#define EXT_BGRX_GREEN 1
332#define EXT_BGRX_BLUE 0
333#define EXT_BGRX_PIXELSIZE 4
334
335#define EXT_XBGR_RED 3
336#define EXT_XBGR_GREEN 2
337#define EXT_XBGR_BLUE 1
338#define EXT_XBGR_PIXELSIZE 4
339
340#define EXT_XRGB_RED 1
341#define EXT_XRGB_GREEN 2
342#define EXT_XRGB_BLUE 3
343#define EXT_XRGB_PIXELSIZE 4
344
DRCf25c0712009-04-03 12:00:51 +0000345static const int rgb_red[JPEG_NUMCS] = {
DRCb4570bb2011-09-07 06:31:00 +0000346 -1, -1, RGB_RED, -1, -1, -1, EXT_RGB_RED, EXT_RGBX_RED,
DRC67ce3b22011-12-19 02:21:03 +0000347 EXT_BGR_RED, EXT_BGRX_RED, EXT_XBGR_RED, EXT_XRGB_RED,
DRC78df2e62014-05-12 09:23:57 +0000348 EXT_RGBX_RED, EXT_BGRX_RED, EXT_XBGR_RED, EXT_XRGB_RED,
349 -1
DRCf25c0712009-04-03 12:00:51 +0000350};
351
352static const int rgb_green[JPEG_NUMCS] = {
DRCb4570bb2011-09-07 06:31:00 +0000353 -1, -1, RGB_GREEN, -1, -1, -1, EXT_RGB_GREEN, EXT_RGBX_GREEN,
DRC67ce3b22011-12-19 02:21:03 +0000354 EXT_BGR_GREEN, EXT_BGRX_GREEN, EXT_XBGR_GREEN, EXT_XRGB_GREEN,
DRC78df2e62014-05-12 09:23:57 +0000355 EXT_RGBX_GREEN, EXT_BGRX_GREEN, EXT_XBGR_GREEN, EXT_XRGB_GREEN,
356 -1
DRCf25c0712009-04-03 12:00:51 +0000357};
358
359static const int rgb_blue[JPEG_NUMCS] = {
DRCb4570bb2011-09-07 06:31:00 +0000360 -1, -1, RGB_BLUE, -1, -1, -1, EXT_RGB_BLUE, EXT_RGBX_BLUE,
DRC67ce3b22011-12-19 02:21:03 +0000361 EXT_BGR_BLUE, EXT_BGRX_BLUE, EXT_XBGR_BLUE, EXT_XRGB_BLUE,
DRC78df2e62014-05-12 09:23:57 +0000362 EXT_RGBX_BLUE, EXT_BGRX_BLUE, EXT_XBGR_BLUE, EXT_XRGB_BLUE,
363 -1
DRCf25c0712009-04-03 12:00:51 +0000364};
365
366static const int rgb_pixelsize[JPEG_NUMCS] = {
DRCb4570bb2011-09-07 06:31:00 +0000367 -1, -1, RGB_PIXELSIZE, -1, -1, -1, EXT_RGB_PIXELSIZE, EXT_RGBX_PIXELSIZE,
DRC67ce3b22011-12-19 02:21:03 +0000368 EXT_BGR_PIXELSIZE, EXT_BGRX_PIXELSIZE, EXT_XBGR_PIXELSIZE, EXT_XRGB_PIXELSIZE,
DRC78df2e62014-05-12 09:23:57 +0000369 EXT_RGBX_PIXELSIZE, EXT_BGRX_PIXELSIZE, EXT_XBGR_PIXELSIZE, EXT_XRGB_PIXELSIZE,
370 -1
DRCf25c0712009-04-03 12:00:51 +0000371};
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000372
373/* Definitions for speed-related optimizations. */
374
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000375/* On some machines (notably 68000 series) "int" is 32 bits, but multiplying
376 * two 16-bit shorts is faster than multiplying two ints. Define MULTIPLIER
377 * as short on such a machine. MULTIPLIER must be at least 16 bits wide.
378 */
379
380#ifndef MULTIPLIER
Pierre Ossman5eb84ff2009-03-09 13:25:30 +0000381#ifndef WITH_SIMD
DRCe5eaf372014-05-09 18:00:32 +0000382#define MULTIPLIER int /* type for fastest integer multiply */
Pierre Ossman5eb84ff2009-03-09 13:25:30 +0000383#else
384#define MULTIPLIER short /* prefer 16-bit with SIMD for parellelism */
385#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000386#endif
387
388
389/* FAST_FLOAT should be either float or double, whichever is done faster
390 * by your compiler. (Note that this type is only used in the floating point
391 * DCT routines, so it only matters if you've defined DCT_FLOAT_SUPPORTED.)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000392 */
393
394#ifndef FAST_FLOAT
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000395#define FAST_FLOAT float
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000396#endif
397
398#endif /* JPEG_INTERNAL_OPTIONS */