Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/3rdparty/libjpeg/jerror.h

    r2 r846  
    33 *
    44 * Copyright (C) 1994-1997, Thomas G. Lane.
     5 * Modified 1997-2009 by Guido Vollbeding.
    56 * This file is part of the Independent JPEG Group's software.
    67 * For conditions of distribution and use, see the accompanying README file.
     
    4041
    4142/* For maintenance convenience, list is alphabetical by message code name */
    42 JMESSAGE(JERR_ARITH_NOTIMPL,
    43          "Sorry, there are legal restrictions on arithmetic coding")
    4443JMESSAGE(JERR_BAD_ALIGN_TYPE, "ALIGN_TYPE is wrong, please fix")
    4544JMESSAGE(JERR_BAD_ALLOC_CHUNK, "MAX_ALLOC_CHUNK is wrong, please fix")
    4645JMESSAGE(JERR_BAD_BUFFER_MODE, "Bogus buffer control mode")
    4746JMESSAGE(JERR_BAD_COMPONENT_ID, "Invalid component ID %d in SOS")
     47JMESSAGE(JERR_BAD_CROP_SPEC, "Invalid crop request")
    4848JMESSAGE(JERR_BAD_DCT_COEF, "DCT coefficient out of range")
    49 JMESSAGE(JERR_BAD_DCTSIZE, "IDCT output block size %d not supported")
     49JMESSAGE(JERR_BAD_DCTSIZE, "DCT scaled block size %dx%d not supported")
     50JMESSAGE(JERR_BAD_DROP_SAMPLING,
     51         "Component index %d: mismatching sampling ratio %d:%d, %d:%d, %c")
    5052JMESSAGE(JERR_BAD_HUFF_TABLE, "Bogus Huffman table definition")
    5153JMESSAGE(JERR_BAD_IN_COLORSPACE, "Bogus input colorspace")
     
    9496JMESSAGE(JERR_NOTIMPL, "Not implemented yet")
    9597JMESSAGE(JERR_NOT_COMPILED, "Requested feature was omitted at compile time")
     98JMESSAGE(JERR_NO_ARITH_TABLE, "Arithmetic table 0x%02x was not defined")
    9699JMESSAGE(JERR_NO_BACKING_STORE, "Backing store not supported")
    97100JMESSAGE(JERR_NO_HUFF_TABLE, "Huffman table 0x%02x was not defined")
     
    171174JMESSAGE(JTRC_XMS_OPEN, "Obtained XMS handle %u")
    172175JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d")
     176JMESSAGE(JWRN_ARITH_BAD_CODE, "Corrupt JPEG data: bad arithmetic code")
    173177JMESSAGE(JWRN_BOGUS_PROGRESSION,
    174178         "Inconsistent progression sequence for component %d coefficient %d")
     
    227231   (cinfo)->err->msg_parm.i[2] = (p3), \
    228232   (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), \
    229242   (*(cinfo)->err->error_exit) ((j_common_ptr) (cinfo)))
    230243#define ERREXITS(cinfo,code,str)  \
Note: See TracChangeset for help on using the changeset viewer.