Changeset 846 for trunk/src/3rdparty/libjpeg/jdtrans.c
- 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/jdtrans.c
r2 r846 3 3 * 4 4 * Copyright (C) 1995-1997, Thomas G. Lane. 5 * Modified 2000-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. … … 100 101 cinfo->buffered_image = TRUE; 101 102 103 /* Compute output image dimensions and related values. */ 104 jpeg_core_output_dimensions(cinfo); 105 102 106 /* Entropy decoding: either Huffman or arithmetic coding. */ 103 if (cinfo->arith_code) { 104 ERREXIT(cinfo, JERR_ARITH_NOTIMPL); 105 } else { 106 if (cinfo->progressive_mode) { 107 #ifdef D_PROGRESSIVE_SUPPORTED 108 jinit_phuff_decoder(cinfo); 109 #else 110 ERREXIT(cinfo, JERR_NOT_COMPILED); 111 #endif 112 } else 113 jinit_huff_decoder(cinfo); 107 if (cinfo->arith_code) 108 jinit_arith_decoder(cinfo); 109 else { 110 jinit_huff_decoder(cinfo); 114 111 } 115 112
Note:
See TracChangeset
for help on using the changeset viewer.