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/jmorecfg.h

    r561 r846  
    33 *
    44 * Copyright (C) 1991-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.
     
    158159/* INT32 must hold at least signed 32-bit values. */
    159160
    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
    161166typedef long INT32;
     167#endif
     168#endif
     169#endif
     170#endif
    162171#endif
    163172
     
    181190 */
    182191
     192#if defined(VXWORKS) && defined(LOCAL)
     193#undef LOCAL
     194#endif
    183195/* a function called through method pointers: */
    184196#define METHODDEF(type)         static type
    185197/* a function used only in its module: */
    186 #if defined(VXWORKS) && defined(LOCAL)
    187 # undef LOCAL
    188 #endif
    189198#define LOCAL(type)             static type
    190199/* a function referenced thru EXTERNs: */
     
    213222 */
    214223
     224#ifndef FAR
    215225#ifdef NEED_FAR_POINTERS
    216226#define FAR  far
    217227#else
    218228#define FAR
     229#endif
    219230#endif
    220231
     
    260271 */
    261272
    262 /* Arithmetic coding is unsupported for legal reasons.  Complaints to IBM. */
    263 
    264273/* Capability options common to encoder and decoder: */
    265274
     
    273282#define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
    274283#define C_PROGRESSIVE_SUPPORTED     /* Progressive JPEG? (Requires MULTISCAN)*/
     284#define DCT_SCALING_SUPPORTED       /* Input rescaling via DCT? (Requires DCT_ISLOW)*/
    275285#define ENTROPY_OPT_SUPPORTED       /* Optimization of entropy coding parms? */
    276286/* Note: if you selected 12-bit data precision, it is dangerous to turn off
     
    289299#define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
    290300#define D_PROGRESSIVE_SUPPORTED     /* Progressive JPEG? (Requires MULTISCAN)*/
     301#define IDCT_SCALING_SUPPORTED      /* Output rescaling via IDCT? */
    291302#define SAVE_MARKERS_SUPPORTED      /* jpeg_save_markers() needed? */
    292303#define BLOCK_SMOOTHING_SUPPORTED   /* Block smoothing? (Progressive only) */
    293 #define IDCT_SCALING_SUPPORTED      /* Output rescaling via IDCT? */
    294304#undef  UPSAMPLE_SCALING_SUPPORTED  /* Output rescaling at upsample stage? */
    295305#define UPSAMPLE_MERGING_SUPPORTED  /* Fast path for sloppy upsampling? */
Note: See TracChangeset for help on using the changeset viewer.