亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jmorecfg.h

?? CT工作站具有打印報告、病歷管理、圖像處理專家詞庫等功能
?? H
字號:
////////////////////////////////////////////////////////////////////////
//
//	Note : this file is included as part of the Smaller Animals Software
//	JpegFile package. Though this file has not been modified from it's 
//	original IJG 6a form, it is not the responsibility on the Independent
//	JPEG Group to answer questions regarding this code.
//	
//	Any questions you have about this code should be addressed to :
//
//	CHRISDL@PAGESZ.NET	- the distributor of this package.
//
//	Remember, by including this code in the JpegFile package, Smaller 
//	Animals Software assumes all responsibilities for answering questions
//	about it. If we (SA Software) can't answer your questions ourselves, we 
//	will direct you to people who can.
//
//	Thanks, CDL.
//
////////////////////////////////////////////////////////////////////////

/*
 * jmorecfg.h
 *
 * Copyright (C) 1991-1996, Thomas G. Lane.
 * This file is part of the Independent JPEG Group's software.
 * For conditions of distribution and use, see the accompanying README file.
 *
 * This file contains additional configuration options that customize the
 * JPEG software for special applications or support machine-dependent
 * optimizations.  Most users will not need to touch this file.
 */


/*
 * Define BITS_IN_JSAMPLE as either
 *   8   for 8-bit sample values (the usual setting)
 *   12  for 12-bit sample values
 * Only 8 and 12 are legal data precisions for lossy JPEG according to the
 * JPEG standard, and the IJG code does not support anything else!
 * We do not support run-time selection of data precision, sorry.
 */

#define BITS_IN_JSAMPLE  8	/* use 8 or 12 */


/*
 * Maximum number of components (color channels) allowed in JPEG image.
 * To meet the letter of the JPEG spec, set this to 255.  However, darn
 * few applications need more than 4 channels (maybe 5 for CMYK + alpha
 * mask).  We recommend 10 as a reasonable compromise; use 4 if you are
 * really short on memory.  (Each allowed component costs a hundred or so
 * bytes of storage, whether actually used in an image or not.)
 */

#define MAX_COMPONENTS  10	/* maximum number of image components */


/*
 * Basic data types.
 * You may need to change these if you have a machine with unusual data
 * type sizes; for example, "char" not 8 bits, "short" not 16 bits,
 * or "long" not 32 bits.  We don't care whether "int" is 16 or 32 bits,
 * but it had better be at least 16.
 */

/* Representation of a single sample (pixel element value).
 * We frequently allocate large arrays of these, so it's important to keep
 * them small.  But if you have memory to burn and access to char or short
 * arrays is very slow on your hardware, you might want to change these.
 */

#if BITS_IN_JSAMPLE == 8
/* JSAMPLE should be the smallest type that will hold the values 0..255.
 * You can use a signed char by having GETJSAMPLE mask it with 0xFF.
 */

#ifdef HAVE_UNSIGNED_CHAR

typedef unsigned char JSAMPLE;
#define GETJSAMPLE(value)  ((int) (value))

#else /* not HAVE_UNSIGNED_CHAR */

typedef char JSAMPLE;
#ifdef CHAR_IS_UNSIGNED
#define GETJSAMPLE(value)  ((int) (value))
#else
#define GETJSAMPLE(value)  ((int) (value) & 0xFF)
#endif /* CHAR_IS_UNSIGNED */

#endif /* HAVE_UNSIGNED_CHAR */

#define MAXJSAMPLE	255
#define CENTERJSAMPLE	128

#endif /* BITS_IN_JSAMPLE == 8 */


#if BITS_IN_JSAMPLE == 12
/* JSAMPLE should be the smallest type that will hold the values 0..4095.
 * On nearly all machines "short" will do nicely.
 */

typedef short JSAMPLE;
#define GETJSAMPLE(value)  ((int) (value))

#define MAXJSAMPLE	4095
#define CENTERJSAMPLE	2048

#endif /* BITS_IN_JSAMPLE == 12 */


/* Representation of a DCT frequency coefficient.
 * This should be a signed value of at least 16 bits; "short" is usually OK.
 * Again, we allocate large arrays of these, but you can change to int
 * if you have memory to burn and "short" is really slow.
 */

typedef short JCOEF;


/* Compressed datastreams are represented as arrays of JOCTET.
 * These must be EXACTLY 8 bits wide, at least once they are written to
 * external storage.  Note that when using the stdio data source/destination
 * managers, this is also the data type passed to fread/fwrite.
 */

#ifdef HAVE_UNSIGNED_CHAR

typedef unsigned char JOCTET;
#define GETJOCTET(value)  (value)

#else /* not HAVE_UNSIGNED_CHAR */

typedef char JOCTET;
#ifdef CHAR_IS_UNSIGNED
#define GETJOCTET(value)  (value)
#else
#define GETJOCTET(value)  ((value) & 0xFF)
#endif /* CHAR_IS_UNSIGNED */

#endif /* HAVE_UNSIGNED_CHAR */


/* These typedefs are used for various table entries and so forth.
 * They must be at least as wide as specified; but making them too big
 * won't cost a huge amount of memory, so we don't provide special
 * extraction code like we did for JSAMPLE.  (In other words, these
 * typedefs live at a different point on the speed/space tradeoff curve.)
 */

/* UINT8 must hold at least the values 0..255. */

#ifdef HAVE_UNSIGNED_CHAR
typedef unsigned char UINT8;
#else /* not HAVE_UNSIGNED_CHAR */
#ifdef CHAR_IS_UNSIGNED
typedef char UINT8;
#else /* not CHAR_IS_UNSIGNED */
typedef short UINT8;
#endif /* CHAR_IS_UNSIGNED */
#endif /* HAVE_UNSIGNED_CHAR */

/* UINT16 must hold at least the values 0..65535. */

#ifdef HAVE_UNSIGNED_SHORT
typedef unsigned short UINT16;
#else /* not HAVE_UNSIGNED_SHORT */
typedef unsigned int UINT16;
#endif /* HAVE_UNSIGNED_SHORT */

/* INT16 must hold at least the values -32768..32767. */

#ifndef XMD_H			/* X11/xmd.h correctly defines INT16 */
typedef short INT16;
#endif

/* INT32 must hold at least signed 32-bit values. */

#ifndef XMD_H			/* X11/xmd.h correctly defines INT32 */
//typedef long INT32;
#endif

/* Datatype used for image dimensions.  The JPEG standard only supports
 * images up to 64K*64K due to 16-bit fields in SOF markers.  Therefore
 * "unsigned int" is sufficient on all machines.  However, if you need to
 * handle larger images and you don't mind deviating from the spec, you
 * can change this datatype.
 */

typedef unsigned int JDIMENSION;

#define JPEG_MAX_DIMENSION  65500L  /* a tad under 64K to prevent overflows */


/* These macros are used in all function definitions and extern declarations.
 * You could modify them if you need to change function linkage conventions;
 * in particular, you'll need to do that to make the library a Windows DLL.
 * Another application is to make all functions global for use with debuggers
 * or code profilers that require it.
 */

/* a function called through method pointers: */
#define METHODDEF(type)		static type
/* a function used only in its module: */
#define LOCAL(type)		static type
/* a function referenced thru EXTERNs: */
#define GLOBAL(type)		type
/* a reference to a GLOBAL function: */
#define EXTERN(type)		extern type


/* This macro is used to declare a "method", that is, a function pointer.
 * We want to supply prototype parameters if the compiler can cope.
 * Note that the arglist parameter must be parenthesized!
 * Again, you can customize this if you need special linkage keywords.
 */

#ifdef HAVE_PROTOTYPES
#define JMETHOD(type,methodname,arglist)  type (*methodname) arglist
#else
#define JMETHOD(type,methodname,arglist)  type (*methodname) ()
#endif


/* Here is the pseudo-keyword for declaring pointers that must be "far"
 * on 80x86 machines.  Most of the specialized coding for 80x86 is handled
 * by just saying "FAR *" where such a pointer is needed.  In a few places
 * explicit coding is needed; see uses of the NEED_FAR_POINTERS symbol.
 */

#ifdef NEED_FAR_POINTERS
#define FAR  far
#else
#ifndef FAR
#define FAR
#endif
#endif


/*
 * On a few systems, type XBooleaN and/or its values FALSE, TRUE may appear
 * in standard header files.  Or you may have conflicts with application-
 * specific header files that you want to include together with these files.
 * Defining HAVE_BOOLEAN before including jpeglib.h should make it work.
 */

#ifndef HAVE_BOOLEAN
typedef int XBooleaN;
#endif
#ifndef FALSE			/* in case these macros already exist */
#define FALSE	0		/* values of XBooleaN */
#endif
#ifndef TRUE
#define TRUE	1
#endif


/*
 * The remaining options affect code selection within the JPEG library,
 * but they don't need to be visible to most applications using the library.
 * To minimize application namespace pollution, the symbols won't be
 * defined unless JPEG_INTERNALS or JPEG_INTERNAL_OPTIONS has been defined.
 */

#ifdef JPEG_INTERNALS
#define JPEG_INTERNAL_OPTIONS
#endif

#ifdef JPEG_INTERNAL_OPTIONS


/*
 * These defines indicate whether to include various optional functions.
 * Undefining some of these symbols will produce a smaller but less capable
 * library.  Note that you can leave certain source files out of the
 * compilation/linking process if you've #undef'd the corresponding symbols.
 * (You may HAVE to do that if your compiler doesn't like null source files.)
 */

/* Arithmetic coding is unsupported for legal reasons.  Complaints to IBM. */

/* Capability options common to encoder and decoder: */

#define DCT_ISLOW_SUPPORTED	/* slow but accurate integer algorithm */
#define DCT_IFAST_SUPPORTED	/* faster, less accurate integer method */
#define DCT_FLOAT_SUPPORTED	/* floating-point: accurate, fast on fast HW */

/* Encoder capability options: */

#undef  C_ARITH_CODING_SUPPORTED    /* Arithmetic coding back end? */
#define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
#define C_PROGRESSIVE_SUPPORTED	    /* Progressive JPEG? (Requires MULTISCAN)*/
#define ENTROPY_OPT_SUPPORTED	    /* Optimization of entropy coding parms? */
/* Note: if you selected 12-bit data precision, it is dangerous to turn off
 * ENTROPY_OPT_SUPPORTED.  The standard Huffman tables are only good for 8-bit
 * precision, so jchuff.c normally uses entropy optimization to compute
 * usable tables for higher precision.  If you don't want to do optimization,
 * you'll have to supply different default Huffman tables.
 * The exact same statements apply for progressive JPEG: the default tables
 * don't work for progressive mode.  (This may get fixed, however.)
 */
#define INPUT_SMOOTHING_SUPPORTED   /* Input image smoothing option? */

/* Decoder capability options: */

#undef  D_ARITH_CODING_SUPPORTED    /* Arithmetic coding back end? */
#define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
#define D_PROGRESSIVE_SUPPORTED	    /* Progressive JPEG? (Requires MULTISCAN)*/
#define BLOCK_SMOOTHING_SUPPORTED   /* Block smoothing? (Progressive only) */
#define IDCT_SCALING_SUPPORTED	    /* Output rescaling via IDCT? */
#undef  UPSAMPLE_SCALING_SUPPORTED  /* Output rescaling at upsample stage? */
#define UPSAMPLE_MERGING_SUPPORTED  /* Fast path for sloppy upsampling? */
#define QUANT_1PASS_SUPPORTED	    /* 1-pass color quantization? */
#define QUANT_2PASS_SUPPORTED	    /* 2-pass color quantization? */

/* more capability options later, no doubt */


/*
 * Ordering of RGB data in scanlines passed to or from the application.
 * If your application wants to deal with data in the order B,G,R, just
 * change these macros.  You can also deal with formats such as R,G,B,X
 * (one extra byte per pixel) by changing RGB_PIXELSIZE.  Note that changing
 * the offsets will also change the order in which colormap data is organized.
 * RESTRICTIONS:
 * 1. The sample applications cjpeg,djpeg do NOT support modified RGB formats.
 * 2. These macros only affect RGB<=>YCbCr color conversion, so they are not
 *    useful if you are using JPEG color spaces other than YCbCr or grayscale.
 * 3. The color quantizer modules will not behave desirably if RGB_PIXELSIZE
 *    is not 3 (they don't understand about dummy color components!).  So you
 *    can't use color quantization if you change that value.
 */

#define RGB_RED		0	/* Offset of Red in an RGB scanline element */
#define RGB_GREEN	1	/* Offset of Green */
#define RGB_BLUE	2	/* Offset of Blue */
#define RGB_PIXELSIZE	3	/* JSAMPLEs per RGB scanline element */


/* Definitions for speed-related optimizations. */


/* If your compiler supports inline functions, define INLINE
 * as the inline keyword; otherwise define it as empty.
 */

#ifndef INLINE
#ifdef __GNUC__			/* for instance, GNU C knows about inline */
#define INLINE __inline__
#endif
#ifndef INLINE
#define INLINE			/* default is to define it as empty */
#endif
#endif


/* On some machines (notably 68000 series) "int" is 32 bits, but multiplying
 * two 16-bit shorts is faster than multiplying two ints.  Define MULTIPLIER
 * as short on such a machine.  MULTIPLIER must be at least 16 bits wide.
 */

#ifndef MULTIPLIER
#define MULTIPLIER  int		/* type for fastest integer multiply */
#endif


/* FAST_FLOAT should be either float or double, whichever is done faster
 * by your compiler.  (Note that this type is only used in the floating point
 * DCT routines, so it only matters if you've defined DCT_FLOAT_SUPPORTED.)
 * Typically, float is faster in ANSI C compilers, while double is faster in
 * pre-ANSI compilers (because they insist on converting to double anyway).
 * The code below therefore chooses float if we have ANSI-style prototypes.
 */

#ifndef FAST_FLOAT
#ifdef HAVE_PROTOTYPES
#define FAST_FLOAT  float
#else
#define FAST_FLOAT  double
#endif
#endif

#endif /* JPEG_INTERNAL_OPTIONS */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲自拍偷拍九九九| 日韩电影在线一区| 欧美精品一级二级| 成人污视频在线观看| 午夜精品视频在线观看| 国产精品免费视频观看| 日韩一区二区电影| 欧美性受xxxx黑人xyx性爽| 国产河南妇女毛片精品久久久| 亚洲一区二区三区四区的| 中文字幕乱码亚洲精品一区| 精品久久一二三区| 欧美日韩国产综合久久| 91色在线porny| 国产很黄免费观看久久| 激情综合色综合久久综合| 亚洲综合色区另类av| 国产精品网站在线观看| 欧美成人猛片aaaaaaa| 欧美日韩在线观看一区二区| www.亚洲在线| 国产精品自拍在线| 美腿丝袜亚洲综合| 亚洲bdsm女犯bdsm网站| 亚洲精品成人精品456| 国产精品久久久久久亚洲毛片| 国产亚洲视频系列| 一区二区三区四区av| 国产日韩精品一区二区三区| 日韩欧美在线一区二区三区| 日本电影欧美片| 91福利在线导航| 91免费观看视频| 91美女精品福利| 一本色道a无线码一区v| 91玉足脚交白嫩脚丫在线播放| 成人av免费在线| 91在线精品一区二区| 91在线视频官网| av在线播放不卡| 99在线热播精品免费| 99re这里只有精品视频首页| 91美女视频网站| 欧美性做爰猛烈叫床潮| 欧美日本国产视频| 欧美一区二区三区啪啪| 日韩亚洲欧美在线| 久久久不卡网国产精品一区| 国产日韩视频一区二区三区| 国产精品―色哟哟| **欧美大码日韩| 亚洲一区欧美一区| 欧美aaaaaa午夜精品| 国产福利电影一区二区三区| 成人午夜免费av| 一本久道中文字幕精品亚洲嫩| 欧美三区在线视频| 日韩美女一区二区三区四区| 国产三级精品三级| 亚洲色图视频免费播放| 午夜国产不卡在线观看视频| 欧美亚洲精品一区| 欧美电影免费观看高清完整版在| 国产午夜精品在线观看| 亚洲天堂2016| 奇米精品一区二区三区在线观看| 国产精品一区一区| 色猫猫国产区一区二在线视频| 欧美日韩国产小视频在线观看| 日韩免费视频一区二区| 国产精品嫩草99a| 日日夜夜一区二区| 国产成人免费xxxxxxxx| 日本韩国欧美在线| 日韩欧美一二三| 国产精品水嫩水嫩| 亚洲成人av一区二区| 国产一区二区三区四区在线观看| 91蝌蚪porny九色| 欧美一级片在线观看| 日本一区二区三级电影在线观看 | 精品久久久久一区二区国产| 国产欧美精品国产国产专区| 亚洲小说春色综合另类电影| 国产一区二区三区国产| 欧美无乱码久久久免费午夜一区 | 免费人成精品欧美精品| 丁香桃色午夜亚洲一区二区三区| 欧美性猛交xxxx黑人交| 久久先锋影音av鲁色资源| 亚洲在线中文字幕| 国产成人免费在线观看不卡| 欧美狂野另类xxxxoooo| 国产精品国模大尺度视频| 热久久久久久久| 在线免费观看成人短视频| 久久精品人人做人人综合| 天堂一区二区在线| 91亚洲精品久久久蜜桃网站| 久久久久久免费| 麻豆免费精品视频| 欧美日韩国产电影| 亚洲图片欧美激情| 国产乱码精品1区2区3区| 欧美丰满高潮xxxx喷水动漫| 亚洲欧美一区二区三区国产精品| 国内精品久久久久影院薰衣草 | 国产福利精品一区| 日韩亚洲欧美在线| 午夜精品久久久久影视| 一本久道中文字幕精品亚洲嫩| 国产色产综合产在线视频| 免费成人在线观看| 欧美精品在线观看播放| 夜夜操天天操亚洲| 99re8在线精品视频免费播放| 久久久亚洲精华液精华液精华液| 天天影视涩香欲综合网| 欧美性受极品xxxx喷水| 精品亚洲欧美一区| 欧美日韩国产在线播放网站| 亚洲在线视频网站| 日本韩国精品一区二区在线观看| 国产精品不卡一区| 成人午夜碰碰视频| 国产精品丝袜久久久久久app| 国产成人欧美日韩在线电影| 国产三级三级三级精品8ⅰ区| 国产在线看一区| 亚洲精品一区二区精华| 精品一区免费av| 日韩免费看网站| 国产在线不卡一区| 久久精品网站免费观看| 国产99久久久久久免费看农村| 久久夜色精品国产噜噜av| 国产电影精品久久禁18| 欧美极品另类videosde| 成人综合婷婷国产精品久久 | 中文字幕在线不卡| 99视频在线精品| 亚洲美女淫视频| 欧美午夜一区二区三区免费大片| 亚洲v日本v欧美v久久精品| 911精品产国品一二三产区| 日本亚洲视频在线| 精品成人免费观看| 福利一区二区在线观看| 中文文精品字幕一区二区| 99久久免费精品高清特色大片| 国产精品美女久久久久aⅴ| 91在线云播放| 亚洲一区二区三区四区五区黄 | 91成人免费在线| 日韩精品色哟哟| 精品福利av导航| 9人人澡人人爽人人精品| 亚洲黄色av一区| 日韩视频国产视频| 国产成人精品免费| 一区二区在线观看不卡| 91麻豆精品国产91久久久资源速度| 日本 国产 欧美色综合| 久久久久久久综合日本| 一本大道久久a久久综合婷婷| 婷婷丁香久久五月婷婷| 久久这里只有精品首页| 91在线视频免费91| 日本不卡视频在线观看| 国产精品美女www爽爽爽| 欧美日韩黄色影视| 国产高清精品久久久久| 亚洲一区视频在线| 久久久亚洲精品石原莉奈| 在线欧美日韩国产| 激情综合色综合久久综合| 亚洲欧美福利一区二区| 欧美一级欧美一级在线播放| 成人在线综合网| 日韩不卡一区二区三区| 国产精品久久久久影院老司 | 91国产免费看| 国产真实乱子伦精品视频| 亚洲最新在线观看| 精品免费一区二区三区| 在线观看欧美日本| 国产麻豆视频一区二区| 亚洲午夜电影在线观看| 国产欧美日本一区视频| 欧美精品国产精品| 波多野结衣中文一区| 美国三级日本三级久久99| 一区二区三区不卡视频在线观看| 精品粉嫩aⅴ一区二区三区四区| 欧美性猛交xxxxxx富婆| 成人精品视频一区| 久久精品国产澳门| 无码av中文一区二区三区桃花岛| 中文字幕五月欧美| 久久丝袜美腿综合|