Changeset 846 for trunk/src/3rdparty/libjpeg/jmorecfg.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/jmorecfg.h
r561 r846 3 3 * 4 4 * Copyright (C) 1991-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. … … 158 159 /* INT32 must hold at least signed 32-bit values. */ 159 160 160 #if !defined(XMD_H) && !defined(VXWORKS) /* X11/xmd.h correctly defines INT32 */ 161 #ifndef XMD_H /* X11/xmd.h correctly defines INT32 */ 162 #ifndef _BASETSD_H_ /* Microsoft defines it in basetsd.h */ 163 #ifndef _BASETSD_H /* MinGW is slightly different */ 164 #ifndef QGLOBAL_H /* Qt defines it in qglobal.h */ 165 #ifndef VXWORKS 161 166 typedef long INT32; 167 #endif 168 #endif 169 #endif 170 #endif 162 171 #endif 163 172 … … 181 190 */ 182 191 192 #if defined(VXWORKS) && defined(LOCAL) 193 #undef LOCAL 194 #endif 183 195 /* a function called through method pointers: */ 184 196 #define METHODDEF(type) static type 185 197 /* a function used only in its module: */ 186 #if defined(VXWORKS) && defined(LOCAL)187 # undef LOCAL188 #endif189 198 #define LOCAL(type) static type 190 199 /* a function referenced thru EXTERNs: */ … … 213 222 */ 214 223 224 #ifndef FAR 215 225 #ifdef NEED_FAR_POINTERS 216 226 #define FAR far 217 227 #else 218 228 #define FAR 229 #endif 219 230 #endif 220 231 … … 260 271 */ 261 272 262 /* Arithmetic coding is unsupported for legal reasons. Complaints to IBM. */263 264 273 /* Capability options common to encoder and decoder: */ 265 274 … … 273 282 #define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */ 274 283 #define C_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/ 284 #define DCT_SCALING_SUPPORTED /* Input rescaling via DCT? (Requires DCT_ISLOW)*/ 275 285 #define ENTROPY_OPT_SUPPORTED /* Optimization of entropy coding parms? */ 276 286 /* Note: if you selected 12-bit data precision, it is dangerous to turn off … … 289 299 #define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */ 290 300 #define D_PROGRESSIVE_SUPPORTED /* Progressive JPEG? (Requires MULTISCAN)*/ 301 #define IDCT_SCALING_SUPPORTED /* Output rescaling via IDCT? */ 291 302 #define SAVE_MARKERS_SUPPORTED /* jpeg_save_markers() needed? */ 292 303 #define BLOCK_SMOOTHING_SUPPORTED /* Block smoothing? (Progressive only) */ 293 #define IDCT_SCALING_SUPPORTED /* Output rescaling via IDCT? */294 304 #undef UPSAMPLE_SCALING_SUPPORTED /* Output rescaling at upsample stage? */ 295 305 #define UPSAMPLE_MERGING_SUPPORTED /* Fast path for sloppy upsampling? */
Note:
See TracChangeset
for help on using the changeset viewer.