Changeset 846 for trunk/src/3rdparty/libjpeg/jerror.h
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/3rdparty/libjpeg/jerror.h
r2 r846 3 3 * 4 4 * Copyright (C) 1994-1997, Thomas G. Lane. 5 * Modified 1997-2009 by Guido Vollbeding. 5 6 * This file is part of the Independent JPEG Group's software. 6 7 * For conditions of distribution and use, see the accompanying README file. … … 40 41 41 42 /* For maintenance convenience, list is alphabetical by message code name */ 42 JMESSAGE(JERR_ARITH_NOTIMPL,43 "Sorry, there are legal restrictions on arithmetic coding")44 43 JMESSAGE(JERR_BAD_ALIGN_TYPE, "ALIGN_TYPE is wrong, please fix") 45 44 JMESSAGE(JERR_BAD_ALLOC_CHUNK, "MAX_ALLOC_CHUNK is wrong, please fix") 46 45 JMESSAGE(JERR_BAD_BUFFER_MODE, "Bogus buffer control mode") 47 46 JMESSAGE(JERR_BAD_COMPONENT_ID, "Invalid component ID %d in SOS") 47 JMESSAGE(JERR_BAD_CROP_SPEC, "Invalid crop request") 48 48 JMESSAGE(JERR_BAD_DCT_COEF, "DCT coefficient out of range") 49 JMESSAGE(JERR_BAD_DCTSIZE, "IDCT output block size %d not supported") 49 JMESSAGE(JERR_BAD_DCTSIZE, "DCT scaled block size %dx%d not supported") 50 JMESSAGE(JERR_BAD_DROP_SAMPLING, 51 "Component index %d: mismatching sampling ratio %d:%d, %d:%d, %c") 50 52 JMESSAGE(JERR_BAD_HUFF_TABLE, "Bogus Huffman table definition") 51 53 JMESSAGE(JERR_BAD_IN_COLORSPACE, "Bogus input colorspace") … … 94 96 JMESSAGE(JERR_NOTIMPL, "Not implemented yet") 95 97 JMESSAGE(JERR_NOT_COMPILED, "Requested feature was omitted at compile time") 98 JMESSAGE(JERR_NO_ARITH_TABLE, "Arithmetic table 0x%02x was not defined") 96 99 JMESSAGE(JERR_NO_BACKING_STORE, "Backing store not supported") 97 100 JMESSAGE(JERR_NO_HUFF_TABLE, "Huffman table 0x%02x was not defined") … … 171 174 JMESSAGE(JTRC_XMS_OPEN, "Obtained XMS handle %u") 172 175 JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d") 176 JMESSAGE(JWRN_ARITH_BAD_CODE, "Corrupt JPEG data: bad arithmetic code") 173 177 JMESSAGE(JWRN_BOGUS_PROGRESSION, 174 178 "Inconsistent progression sequence for component %d coefficient %d") … … 227 231 (cinfo)->err->msg_parm.i[2] = (p3), \ 228 232 (cinfo)->err->msg_parm.i[3] = (p4), \ 233 (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo))) 234 #define ERREXIT6(cinfo,code,p1,p2,p3,p4,p5,p6) \ 235 ((cinfo)->err->msg_code = (code), \ 236 (cinfo)->err->msg_parm.i[0] = (p1), \ 237 (cinfo)->err->msg_parm.i[1] = (p2), \ 238 (cinfo)->err->msg_parm.i[2] = (p3), \ 239 (cinfo)->err->msg_parm.i[3] = (p4), \ 240 (cinfo)->err->msg_parm.i[4] = (p5), \ 241 (cinfo)->err->msg_parm.i[5] = (p6), \ 229 242 (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo))) 230 243 #define ERREXITS(cinfo,code,str) \
Note:
See TracChangeset
for help on using the changeset viewer.