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

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

?? jmorecfg.h

?? JPEG壓縮解壓縮源代碼
?? 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 */

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

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


/* 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 boolean 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 boolean;
#endif
#ifndef FALSE			/* in case these macros already exist */
#define FALSE	0		/* values of boolean */
#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一区二区三区免费野_久草精品视频
日韩欧美国产综合| 日韩免费看网站| 久久国产日韩欧美精品| 中文字幕乱码亚洲精品一区| 欧美另类变人与禽xxxxx| 国内精品免费**视频| 亚洲一区影音先锋| 日本一区二区三区在线观看| 欧美一级欧美三级在线观看| 91网上在线视频| 激情六月婷婷综合| 日韩高清在线电影| 亚洲日本在线观看| 欧美国产精品v| 久久综合九色综合欧美亚洲| 欧美高清视频一二三区 | 成人美女视频在线观看18| 同产精品九九九| 一区二区三区在线视频观看| 亚洲欧美怡红院| 国产欧美日韩视频一区二区| 精品国产亚洲一区二区三区在线观看 | 亚洲国产va精品久久久不卡综合| 欧美韩日一区二区三区四区| 欧美v日韩v国产v| 欧美吻胸吃奶大尺度电影| 99精品久久只有精品| 国产高清亚洲一区| 狠狠色2019综合网| 久久9热精品视频| 免费xxxx性欧美18vr| 亚洲va在线va天堂| 亚洲成av人片观看| 五月天激情综合| 偷拍自拍另类欧美| 免费在线观看视频一区| 免费在线观看视频一区| 免费一级片91| 久久99最新地址| 国产成人a级片| 国产999精品久久久久久绿帽| 国产一区视频在线看| 久久99国产精品久久99果冻传媒| 蜜臀久久久久久久| 日韩成人dvd| 国产在线国偷精品免费看| 精品在线视频一区| 国产盗摄一区二区| 成人小视频免费在线观看| youjizz久久| 99re6这里只有精品视频在线观看| www.亚洲免费av| 91黄视频在线观看| 欧美色中文字幕| 欧美一区二区啪啪| 久久久久9999亚洲精品| 欧美国产激情一区二区三区蜜月| 1024成人网色www| 亚洲综合一区二区三区| 偷拍亚洲欧洲综合| 精品一区精品二区高清| 懂色av中文字幕一区二区三区| 成人ar影院免费观看视频| 色狠狠色狠狠综合| 91精品国产麻豆| 国产亚洲一区字幕| 亚洲精品乱码久久久久久| 婷婷丁香久久五月婷婷| 国内精品写真在线观看| www.综合网.com| 555夜色666亚洲国产免| 久久老女人爱爱| 亚洲精品久久7777| 久久99精品国产.久久久久久| 高清在线观看日韩| 欧美天天综合网| 亚洲精品一线二线三线| 亚洲图片激情小说| 蜜桃视频一区二区三区在线观看| 国产精品白丝jk黑袜喷水| 色婷婷久久99综合精品jk白丝| 欧美一区二区三区四区视频| 国产精品乱码妇女bbbb| 午夜视频久久久久久| 韩国中文字幕2020精品| 色婷婷av一区二区三区大白胸| 555夜色666亚洲国产免| 国产精品第13页| 免费观看30秒视频久久| 色一情一乱一乱一91av| 精品国产伦一区二区三区观看体验| 国产精品久久久久久妇女6080| 日韩精品一卡二卡三卡四卡无卡| 成人综合在线视频| 日韩一区二区三区在线观看| 国产精品家庭影院| 久久99深爱久久99精品| 欧美色综合影院| 中文字幕日韩欧美一区二区三区| 男女性色大片免费观看一区二区| 色噜噜狠狠成人中文综合| 国产日韩欧美a| 美女尤物国产一区| 欧美日韩在线免费视频| 国产精品剧情在线亚洲| 久久99久久久欧美国产| 欧美日韩精品一区二区三区蜜桃 | 久久久午夜电影| 亚洲午夜久久久| 成人免费av网站| 欧美精品一区二区三区在线| 亚洲第一成年网| 91色porny蝌蚪| 欧美国产日韩在线观看| 精品在线你懂的| 91精品国产综合久久久久久| 一二三区精品视频| 99精品久久久久久| 国产亚洲欧美在线| 韩国女主播成人在线观看| 777a∨成人精品桃花网| 亚洲一区二区三区四区五区中文 | 欧美色综合久久| 亚洲精品高清视频在线观看| 成人av网站在线观看| 国产亚洲美州欧州综合国| 国产成人精品一区二区三区四区| 欧美肥妇bbw| 五月天中文字幕一区二区| 欧美日韩一区二区三区免费看| 亚洲人成网站在线| 99热99精品| 亚洲女厕所小便bbb| 成+人+亚洲+综合天堂| 国产精品免费视频网站| 丁香六月久久综合狠狠色| 国产女同性恋一区二区| 国产成人精品综合在线观看| 国产女人aaa级久久久级 | 极品尤物av久久免费看| 欧美一级搡bbbb搡bbbb| 久久99国产乱子伦精品免费| www久久精品| 国产不卡视频一区二区三区| 国产欧美精品一区aⅴ影院 | 国产欧美日韩激情| 国产999精品久久久久久 | 久久精品国产一区二区| 日韩精品一区二区三区中文精品| 久久草av在线| 国产精品丝袜黑色高跟| 91在线精品一区二区| 亚洲综合偷拍欧美一区色| 欧美日韩一区二区在线视频| 日本成人超碰在线观看| 精品国产第一区二区三区观看体验| 极品美女销魂一区二区三区| 国产婷婷色一区二区三区| 成人性生交大片免费| 一区二区三区四区五区视频在线观看 | 亚洲蜜臀av乱码久久精品| 欧美中文字幕不卡| 日韩影视精彩在线| 久久一日本道色综合| 99在线精品观看| 亚洲成年人影院| 国产婷婷色一区二区三区 | 色狠狠色狠狠综合| 日本一区中文字幕| 中文字幕第一区二区| 91久久久免费一区二区| 人人精品人人爱| 国产欧美日韩一区二区三区在线观看| 色诱亚洲精品久久久久久| 日韩高清电影一区| 欧美激情自拍偷拍| 51精品国自产在线| 成人激情免费网站| 日韩精品欧美成人高清一区二区| 久久久久亚洲蜜桃| 欧美性生活久久| 国产成人自拍高清视频在线免费播放 | 精品卡一卡二卡三卡四在线| 99久久99精品久久久久久| 日韩精品欧美精品| 国产精品久久久久9999吃药| 91精品在线观看入口| 成人午夜电影小说| 日韩av在线播放中文字幕| 国产精品久久一级| 亚洲精品在线观| 欧美另类一区二区三区| 99久免费精品视频在线观看| 人禽交欧美网站| 一区二区三区中文字幕| 久久久青草青青国产亚洲免观| 欧美日韩一区二区三区四区五区 | 亚洲综合激情网| 国产欧美一区二区三区在线看蜜臀| 欧美日韩国产经典色站一区二区三区|