blob: a79586fedef66ba1a247ab26f7ada5fe683321d3 [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * jerror.h
3 *
DRCcf55f0b2014-05-28 20:19:54 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00005 * Copyright (C) 1994-1997, Thomas G. Lane.
Guido Vollbeding5996a252009-06-27 00:00:00 +00006 * Modified 1997-2009 by Guido Vollbeding.
DRCcf55f0b2014-05-28 20:19:54 +00007 * libjpeg-turbo Modifications:
DRC44b23992017-01-19 15:18:57 -06008 * Copyright (C) 2014, 2017, 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 defines the error and message codes for the JPEG library.
13 * Edit this file to add new codes, or to translate the message strings to
14 * some other language.
15 * A set of error-reporting macros are defined too. Some applications using
16 * the JPEG library may wish to include this file to get the error codes
17 * and/or the macros.
18 */
19
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000020/*
21 * To define the enum list of message codes, include this file without
22 * defining macro JMESSAGE. To create a message string table, include it
23 * again with a suitable JMESSAGE definition (see jerror.c for an example).
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000024 */
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000025#ifndef JMESSAGE
26#ifndef JERROR_H
27/* First time through, define the enum list */
28#define JMAKE_ENUM_LIST
29#else
30/* Repeated inclusions of this file are no-ops unless JMESSAGE is defined */
31#define JMESSAGE(code,string)
32#endif /* JERROR_H */
33#endif /* JMESSAGE */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000034
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000035#ifdef JMAKE_ENUM_LIST
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000036
37typedef enum {
38
DRCe5eaf372014-05-09 18:00:32 +000039#define JMESSAGE(code,string) code ,
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000040
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +000041#endif /* JMAKE_ENUM_LIST */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000042
43JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */
44
45/* For maintenance convenience, list is alphabetical by message code name */
DRC0571e172011-05-31 20:17:16 +000046#if JPEG_LIB_VERSION < 70
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000047JMESSAGE(JERR_ARITH_NOTIMPL,
DRCe5eaf372014-05-09 18:00:32 +000048 "Sorry, arithmetic coding is not implemented")
DRC0571e172011-05-31 20:17:16 +000049#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000050JMESSAGE(JERR_BAD_ALIGN_TYPE, "ALIGN_TYPE is wrong, please fix")
51JMESSAGE(JERR_BAD_ALLOC_CHUNK, "MAX_ALLOC_CHUNK is wrong, please fix")
52JMESSAGE(JERR_BAD_BUFFER_MODE, "Bogus buffer control mode")
53JMESSAGE(JERR_BAD_COMPONENT_ID, "Invalid component ID %d in SOS")
DRC0571e172011-05-31 20:17:16 +000054#if JPEG_LIB_VERSION >= 70
Guido Vollbeding5996a252009-06-27 00:00:00 +000055JMESSAGE(JERR_BAD_CROP_SPEC, "Invalid crop request")
DRC0571e172011-05-31 20:17:16 +000056#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000057JMESSAGE(JERR_BAD_DCT_COEF, "DCT coefficient out of range")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000058JMESSAGE(JERR_BAD_DCTSIZE, "IDCT output block size %d not supported")
DRC0571e172011-05-31 20:17:16 +000059#if JPEG_LIB_VERSION >= 70
60JMESSAGE(JERR_BAD_DROP_SAMPLING,
DRCe5eaf372014-05-09 18:00:32 +000061 "Component index %d: mismatching sampling ratio %d:%d, %d:%d, %c")
DRC0571e172011-05-31 20:17:16 +000062#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000063JMESSAGE(JERR_BAD_HUFF_TABLE, "Bogus Huffman table definition")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000064JMESSAGE(JERR_BAD_IN_COLORSPACE, "Bogus input colorspace")
65JMESSAGE(JERR_BAD_J_COLORSPACE, "Bogus JPEG colorspace")
66JMESSAGE(JERR_BAD_LENGTH, "Bogus marker length")
Thomas G. Lane489583f1996-02-07 00:00:00 +000067JMESSAGE(JERR_BAD_LIB_VERSION,
DRCe5eaf372014-05-09 18:00:32 +000068 "Wrong JPEG library version: library is %d, caller expects %d")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000069JMESSAGE(JERR_BAD_MCU_SIZE, "Sampling factors too large for interleaved scan")
70JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d")
71JMESSAGE(JERR_BAD_PRECISION, "Unsupported JPEG data precision %d")
Thomas G. Lanebc79e061995-08-02 00:00:00 +000072JMESSAGE(JERR_BAD_PROGRESSION,
DRCe5eaf372014-05-09 18:00:32 +000073 "Invalid progressive parameters Ss=%d Se=%d Ah=%d Al=%d")
Thomas G. Lanebc79e061995-08-02 00:00:00 +000074JMESSAGE(JERR_BAD_PROG_SCRIPT,
DRCe5eaf372014-05-09 18:00:32 +000075 "Invalid progressive parameters at scan script entry %d")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000076JMESSAGE(JERR_BAD_SAMPLING, "Bogus sampling factors")
Thomas G. Lanebc79e061995-08-02 00:00:00 +000077JMESSAGE(JERR_BAD_SCAN_SCRIPT, "Invalid scan script at entry %d")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000078JMESSAGE(JERR_BAD_STATE, "Improper call to JPEG library in state %d")
Thomas G. Lane489583f1996-02-07 00:00:00 +000079JMESSAGE(JERR_BAD_STRUCT_SIZE,
DRCe5eaf372014-05-09 18:00:32 +000080 "JPEG parameter struct mismatch: library thinks size is %u, caller expects %u")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000081JMESSAGE(JERR_BAD_VIRTUAL_ACCESS, "Bogus virtual array access")
82JMESSAGE(JERR_BUFFER_SIZE, "Buffer passed to JPEG library is too small")
83JMESSAGE(JERR_CANT_SUSPEND, "Suspension not allowed here")
84JMESSAGE(JERR_CCIR601_NOTIMPL, "CCIR601 sampling not implemented yet")
85JMESSAGE(JERR_COMPONENT_COUNT, "Too many color components: %d, max %d")
86JMESSAGE(JERR_CONVERSION_NOTIMPL, "Unsupported color conversion request")
87JMESSAGE(JERR_DAC_INDEX, "Bogus DAC index %d")
88JMESSAGE(JERR_DAC_VALUE, "Bogus DAC value 0x%x")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000089JMESSAGE(JERR_DHT_INDEX, "Bogus DHT index %d")
90JMESSAGE(JERR_DQT_INDEX, "Bogus DQT index %d")
91JMESSAGE(JERR_EMPTY_IMAGE, "Empty JPEG image (DNL not supported)")
92JMESSAGE(JERR_EMS_READ, "Read from EMS failed")
93JMESSAGE(JERR_EMS_WRITE, "Write to EMS failed")
94JMESSAGE(JERR_EOI_EXPECTED, "Didn't expect more than one scan")
95JMESSAGE(JERR_FILE_READ, "Input file read error")
96JMESSAGE(JERR_FILE_WRITE, "Output file write error --- out of disk space?")
97JMESSAGE(JERR_FRACT_SAMPLE_NOTIMPL, "Fractional sampling not implemented yet")
98JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow")
99JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry")
100JMESSAGE(JERR_IMAGE_TOO_BIG, "Maximum supported image dimension is %u pixels")
101JMESSAGE(JERR_INPUT_EMPTY, "Empty input file")
102JMESSAGE(JERR_INPUT_EOF, "Premature end of input file")
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000103JMESSAGE(JERR_MISMATCHED_QUANT_TABLE,
DRCe5eaf372014-05-09 18:00:32 +0000104 "Cannot transcode due to multiple use of quantization table %d")
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000105JMESSAGE(JERR_MISSING_DATA, "Scan script does not transmit all data")
106JMESSAGE(JERR_MODE_CHANGE, "Invalid color quantization mode change")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000107JMESSAGE(JERR_NOTIMPL, "Not implemented yet")
108JMESSAGE(JERR_NOT_COMPILED, "Requested feature was omitted at compile time")
DRCfa9ff8e2011-06-21 06:17:10 +0000109#if JPEG_LIB_VERSION >= 70
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000110JMESSAGE(JERR_NO_ARITH_TABLE, "Arithmetic table 0x%02x was not defined")
DRC0571e172011-05-31 20:17:16 +0000111#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000112JMESSAGE(JERR_NO_BACKING_STORE, "Backing store not supported")
113JMESSAGE(JERR_NO_HUFF_TABLE, "Huffman table 0x%02x was not defined")
114JMESSAGE(JERR_NO_IMAGE, "JPEG datastream contains no image")
115JMESSAGE(JERR_NO_QUANT_TABLE, "Quantization table 0x%02x was not defined")
116JMESSAGE(JERR_NO_SOI, "Not a JPEG file: starts with 0x%02x 0x%02x")
117JMESSAGE(JERR_OUT_OF_MEMORY, "Insufficient memory (case %d)")
118JMESSAGE(JERR_QUANT_COMPONENTS,
DRCe5eaf372014-05-09 18:00:32 +0000119 "Cannot quantize more than %d color components")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000120JMESSAGE(JERR_QUANT_FEW_COLORS, "Cannot quantize to fewer than %d colors")
121JMESSAGE(JERR_QUANT_MANY_COLORS, "Cannot quantize to more than %d colors")
122JMESSAGE(JERR_SOF_DUPLICATE, "Invalid JPEG file structure: two SOF markers")
123JMESSAGE(JERR_SOF_NO_SOS, "Invalid JPEG file structure: missing SOS marker")
124JMESSAGE(JERR_SOF_UNSUPPORTED, "Unsupported JPEG process: SOF type 0x%02x")
125JMESSAGE(JERR_SOI_DUPLICATE, "Invalid JPEG file structure: two SOI markers")
126JMESSAGE(JERR_SOS_NO_SOF, "Invalid JPEG file structure: SOS before SOF")
127JMESSAGE(JERR_TFILE_CREATE, "Failed to create temporary file %s")
128JMESSAGE(JERR_TFILE_READ, "Read failed on temporary file")
129JMESSAGE(JERR_TFILE_SEEK, "Seek failed on temporary file")
130JMESSAGE(JERR_TFILE_WRITE,
DRCe5eaf372014-05-09 18:00:32 +0000131 "Write failed on temporary file --- out of disk space?")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000132JMESSAGE(JERR_TOO_LITTLE_DATA, "Application transferred too few scanlines")
133JMESSAGE(JERR_UNKNOWN_MARKER, "Unsupported marker type 0x%02x")
134JMESSAGE(JERR_VIRTUAL_BUG, "Virtual array controller messed up")
135JMESSAGE(JERR_WIDTH_OVERFLOW, "Image too wide for this implementation")
136JMESSAGE(JERR_XMS_READ, "Read from XMS failed")
137JMESSAGE(JERR_XMS_WRITE, "Write to XMS failed")
DRCcf55f0b2014-05-28 20:19:54 +0000138JMESSAGE(JMSG_COPYRIGHT, JCOPYRIGHT_SHORT)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000139JMESSAGE(JMSG_VERSION, JVERSION)
140JMESSAGE(JTRC_16BIT_TABLES,
DRCe5eaf372014-05-09 18:00:32 +0000141 "Caution: quantization tables are too coarse for baseline JPEG")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000142JMESSAGE(JTRC_ADOBE,
DRCe5eaf372014-05-09 18:00:32 +0000143 "Adobe APP14 marker: version %d, flags 0x%04x 0x%04x, transform %d")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000144JMESSAGE(JTRC_APP0, "Unknown APP0 marker (not JFIF), length %u")
145JMESSAGE(JTRC_APP14, "Unknown APP14 marker (not Adobe), length %u")
146JMESSAGE(JTRC_DAC, "Define Arithmetic Table 0x%02x: 0x%02x")
147JMESSAGE(JTRC_DHT, "Define Huffman Table 0x%02x")
148JMESSAGE(JTRC_DQT, "Define Quantization Table %d precision %d")
149JMESSAGE(JTRC_DRI, "Define Restart Interval %u")
150JMESSAGE(JTRC_EMS_CLOSE, "Freed EMS handle %u")
151JMESSAGE(JTRC_EMS_OPEN, "Obtained EMS handle %u")
152JMESSAGE(JTRC_EOI, "End Of Image")
153JMESSAGE(JTRC_HUFFBITS, " %3d %3d %3d %3d %3d %3d %3d %3d")
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000154JMESSAGE(JTRC_JFIF, "JFIF APP0 marker: version %d.%02d, density %dx%d %d")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000155JMESSAGE(JTRC_JFIF_BADTHUMBNAILSIZE,
DRCe5eaf372014-05-09 18:00:32 +0000156 "Warning: thumbnail image size does not match data length %u")
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000157JMESSAGE(JTRC_JFIF_EXTENSION,
DRCe5eaf372014-05-09 18:00:32 +0000158 "JFIF extension marker: type 0x%02x, length %u")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000159JMESSAGE(JTRC_JFIF_THUMBNAIL, " with %d x %d thumbnail image")
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000160JMESSAGE(JTRC_MISC_MARKER, "Miscellaneous marker 0x%02x, length %u")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000161JMESSAGE(JTRC_PARMLESS_MARKER, "Unexpected marker 0x%02x")
162JMESSAGE(JTRC_QUANTVALS, " %4u %4u %4u %4u %4u %4u %4u %4u")
163JMESSAGE(JTRC_QUANT_3_NCOLORS, "Quantizing to %d = %d*%d*%d colors")
164JMESSAGE(JTRC_QUANT_NCOLORS, "Quantizing to %d colors")
165JMESSAGE(JTRC_QUANT_SELECTED, "Selected %d colors for quantization")
166JMESSAGE(JTRC_RECOVERY_ACTION, "At marker 0x%02x, recovery action %d")
167JMESSAGE(JTRC_RST, "RST%d")
168JMESSAGE(JTRC_SMOOTH_NOTIMPL,
DRCe5eaf372014-05-09 18:00:32 +0000169 "Smoothing not supported with nonstandard sampling ratios")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000170JMESSAGE(JTRC_SOF, "Start Of Frame 0x%02x: width=%u, height=%u, components=%d")
171JMESSAGE(JTRC_SOF_COMPONENT, " Component %d: %dhx%dv q=%d")
172JMESSAGE(JTRC_SOI, "Start of Image")
173JMESSAGE(JTRC_SOS, "Start Of Scan: %d components")
174JMESSAGE(JTRC_SOS_COMPONENT, " Component %d: dc=%d ac=%d")
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000175JMESSAGE(JTRC_SOS_PARAMS, " Ss=%d, Se=%d, Ah=%d, Al=%d")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000176JMESSAGE(JTRC_TFILE_CLOSE, "Closed temporary file %s")
177JMESSAGE(JTRC_TFILE_OPEN, "Opened temporary file %s")
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000178JMESSAGE(JTRC_THUMB_JPEG,
DRCe5eaf372014-05-09 18:00:32 +0000179 "JFIF extension marker: JPEG-compressed thumbnail image, length %u")
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000180JMESSAGE(JTRC_THUMB_PALETTE,
DRCe5eaf372014-05-09 18:00:32 +0000181 "JFIF extension marker: palette thumbnail image, length %u")
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000182JMESSAGE(JTRC_THUMB_RGB,
DRCe5eaf372014-05-09 18:00:32 +0000183 "JFIF extension marker: RGB thumbnail image, length %u")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000184JMESSAGE(JTRC_UNKNOWN_IDS,
DRCe5eaf372014-05-09 18:00:32 +0000185 "Unrecognized component IDs %d %d %d, assuming YCbCr")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000186JMESSAGE(JTRC_XMS_CLOSE, "Freed XMS handle %u")
187JMESSAGE(JTRC_XMS_OPEN, "Obtained XMS handle %u")
188JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d")
DRCfa9ff8e2011-06-21 06:17:10 +0000189#if JPEG_LIB_VERSION >= 70
Guido Vollbeding1e247ac1998-03-28 00:00:00 +0000190JMESSAGE(JWRN_ARITH_BAD_CODE, "Corrupt JPEG data: bad arithmetic code")
DRC0571e172011-05-31 20:17:16 +0000191#endif
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000192JMESSAGE(JWRN_BOGUS_PROGRESSION,
DRCe5eaf372014-05-09 18:00:32 +0000193 "Inconsistent progression sequence for component %d coefficient %d")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000194JMESSAGE(JWRN_EXTRANEOUS_DATA,
DRCe5eaf372014-05-09 18:00:32 +0000195 "Corrupt JPEG data: %u extraneous bytes before marker 0x%02x")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000196JMESSAGE(JWRN_HIT_MARKER, "Corrupt JPEG data: premature end of data segment")
197JMESSAGE(JWRN_HUFF_BAD_CODE, "Corrupt JPEG data: bad Huffman code")
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000198JMESSAGE(JWRN_JFIF_MAJOR, "Warning: unknown JFIF revision number %d.%02d")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000199JMESSAGE(JWRN_JPEG_EOF, "Premature end of JPEG file")
200JMESSAGE(JWRN_MUST_RESYNC,
DRCe5eaf372014-05-09 18:00:32 +0000201 "Corrupt JPEG data: found marker 0x%02x instead of RST%d")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000202JMESSAGE(JWRN_NOT_SEQUENTIAL, "Invalid SOS parameters for sequential JPEG")
203JMESSAGE(JWRN_TOO_MUCH_DATA, "Application transferred too many scanlines")
DRC0571e172011-05-31 20:17:16 +0000204#if JPEG_LIB_VERSION < 70
205JMESSAGE(JERR_BAD_CROP_SPEC, "Invalid crop request")
DRCfa9ff8e2011-06-21 06:17:10 +0000206#if defined(C_ARITH_CODING_SUPPORTED) || defined(D_ARITH_CODING_SUPPORTED)
207JMESSAGE(JERR_NO_ARITH_TABLE, "Arithmetic table 0x%02x was not defined")
208JMESSAGE(JWRN_ARITH_BAD_CODE, "Corrupt JPEG data: bad arithmetic code")
209#endif
DRC0571e172011-05-31 20:17:16 +0000210#endif
DRC44b23992017-01-19 15:18:57 -0600211JMESSAGE(JWRN_BOGUS_ICC, "Corrupt JPEG data: bad ICC marker")
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000212
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000213#ifdef JMAKE_ENUM_LIST
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000214
215 JMSG_LASTMSGCODE
216} J_MESSAGE_CODE;
217
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000218#undef JMAKE_ENUM_LIST
219#endif /* JMAKE_ENUM_LIST */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000220
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000221/* Zap JMESSAGE macro so that future re-inclusions do nothing by default */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000222#undef JMESSAGE
223
224
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000225#ifndef JERROR_H
226#define JERROR_H
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000227
228/* Macros to simplify using the error and trace message stuff */
229/* The first parameter is either type of cinfo pointer */
230
231/* Fatal errors (print message and exit) */
232#define ERREXIT(cinfo,code) \
233 ((cinfo)->err->msg_code = (code), \
234 (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
235#define ERREXIT1(cinfo,code,p1) \
236 ((cinfo)->err->msg_code = (code), \
237 (cinfo)->err->msg_parm.i[0] = (p1), \
238 (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
239#define ERREXIT2(cinfo,code,p1,p2) \
240 ((cinfo)->err->msg_code = (code), \
241 (cinfo)->err->msg_parm.i[0] = (p1), \
242 (cinfo)->err->msg_parm.i[1] = (p2), \
243 (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
244#define ERREXIT3(cinfo,code,p1,p2,p3) \
245 ((cinfo)->err->msg_code = (code), \
246 (cinfo)->err->msg_parm.i[0] = (p1), \
247 (cinfo)->err->msg_parm.i[1] = (p2), \
248 (cinfo)->err->msg_parm.i[2] = (p3), \
249 (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
250#define ERREXIT4(cinfo,code,p1,p2,p3,p4) \
251 ((cinfo)->err->msg_code = (code), \
252 (cinfo)->err->msg_parm.i[0] = (p1), \
253 (cinfo)->err->msg_parm.i[1] = (p2), \
254 (cinfo)->err->msg_parm.i[2] = (p3), \
255 (cinfo)->err->msg_parm.i[3] = (p4), \
256 (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
257#define ERREXITS(cinfo,code,str) \
258 ((cinfo)->err->msg_code = (code), \
259 strncpy((cinfo)->err->msg_parm.s, (str), JMSG_STR_PARM_MAX), \
260 (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
261
DRCe5eaf372014-05-09 18:00:32 +0000262#define MAKESTMT(stuff) do { stuff } while (0)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000263
264/* Nonfatal errors (we can keep going, but the data is probably corrupt) */
265#define WARNMS(cinfo,code) \
266 ((cinfo)->err->msg_code = (code), \
267 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1))
268#define WARNMS1(cinfo,code,p1) \
269 ((cinfo)->err->msg_code = (code), \
270 (cinfo)->err->msg_parm.i[0] = (p1), \
271 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1))
272#define WARNMS2(cinfo,code,p1,p2) \
273 ((cinfo)->err->msg_code = (code), \
274 (cinfo)->err->msg_parm.i[0] = (p1), \
275 (cinfo)->err->msg_parm.i[1] = (p2), \
276 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), -1))
277
278/* Informational/debugging messages */
279#define TRACEMS(cinfo,lvl,code) \
280 ((cinfo)->err->msg_code = (code), \
281 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
282#define TRACEMS1(cinfo,lvl,code,p1) \
283 ((cinfo)->err->msg_code = (code), \
284 (cinfo)->err->msg_parm.i[0] = (p1), \
285 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
286#define TRACEMS2(cinfo,lvl,code,p1,p2) \
287 ((cinfo)->err->msg_code = (code), \
288 (cinfo)->err->msg_parm.i[0] = (p1), \
289 (cinfo)->err->msg_parm.i[1] = (p2), \
290 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
291#define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \
292 MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
DRCe5eaf372014-05-09 18:00:32 +0000293 _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); \
294 (cinfo)->err->msg_code = (code); \
295 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000296#define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \
297 MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
DRCe5eaf372014-05-09 18:00:32 +0000298 _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \
299 (cinfo)->err->msg_code = (code); \
300 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000301#define TRACEMS5(cinfo,lvl,code,p1,p2,p3,p4,p5) \
302 MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
DRCe5eaf372014-05-09 18:00:32 +0000303 _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \
304 _mp[4] = (p5); \
305 (cinfo)->err->msg_code = (code); \
306 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000307#define TRACEMS8(cinfo,lvl,code,p1,p2,p3,p4,p5,p6,p7,p8) \
308 MAKESTMT(int * _mp = (cinfo)->err->msg_parm.i; \
DRCe5eaf372014-05-09 18:00:32 +0000309 _mp[0] = (p1); _mp[1] = (p2); _mp[2] = (p3); _mp[3] = (p4); \
310 _mp[4] = (p5); _mp[5] = (p6); _mp[6] = (p7); _mp[7] = (p8); \
311 (cinfo)->err->msg_code = (code); \
312 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000313#define TRACEMSS(cinfo,lvl,code,str) \
314 ((cinfo)->err->msg_code = (code), \
315 strncpy((cinfo)->err->msg_parm.s, (str), JMSG_STR_PARM_MAX), \
316 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
317
Thomas G. Lane9ba2f5e1994-12-07 00:00:00 +0000318#endif /* JERROR_H */