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/jcinit.c

    r2 r846  
    4242  jinit_forward_dct(cinfo);
    4343  /* Entropy encoding: either Huffman or arithmetic coding. */
    44   if (cinfo->arith_code) {
    45     ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
    46   } else {
    47     if (cinfo->progressive_mode) {
    48 #ifdef C_PROGRESSIVE_SUPPORTED
    49       jinit_phuff_encoder(cinfo);
    50 #else
    51       ERREXIT(cinfo, JERR_NOT_COMPILED);
    52 #endif
    53     } else
    54       jinit_huff_encoder(cinfo);
     44  if (cinfo->arith_code)
     45    jinit_arith_encoder(cinfo);
     46  else {
     47    jinit_huff_encoder(cinfo);
    5548  }
    5649
Note: See TracChangeset for help on using the changeset viewer.