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

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

?? jpeglib.h

?? These are all the utilities you need to generate MPEG-I movies on a UNIX box with full motion video
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* * jpeglib.h * * Copyright (C) 1991-1994, 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 defines the application interface for the JPEG library. * Most applications using the library need only include this file, * and perhaps jerror.h if they want to know the exact error codes. *//* * First we include the configuration files that record how this * installation of the JPEG library is set up.  jconfig.h can be * generated automatically for many systems.  jmorecfg.h contains * manual configuration options that most people need not worry about. */#ifndef JCONFIG_INCLUDED	/* in case jinclude.h already did */#include "jconfig.h"		/* widely used configuration options */#endif#include "jmorecfg.h"		/* seldom changed options *//* Various constants determining the sizes of things. * All of these are specified by the JPEG standard, so don't change them * if you want to be compatible. */#ifndef DCTSIZE#define DCTSIZE		    8	/* The basic DCT block is 8x8 samples */#endif#ifndef DCTSIZE2#define DCTSIZE2	    64	/* DCTSIZE squared; # of elements in a block */#endif#define NUM_QUANT_TBLS      4	/* Quantization tables are numbered 0..3 */#define NUM_HUFF_TBLS       4	/* Huffman tables are numbered 0..3 */#define NUM_ARITH_TBLS      16	/* Arith-coding tables are numbered 0..15 */#define MAX_COMPS_IN_SCAN   4	/* JPEG limit on # of components in one scan */#define MAX_SAMP_FACTOR     4	/* JPEG limit on sampling factors */#define MAX_BLOCKS_IN_MCU   10	/* JPEG limit on # of blocks in an MCU *//* 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! */#ifdef HAVE_PROTOTYPES#define JMETHOD(type,methodname,arglist)  type (*methodname) arglist#else#define JMETHOD(type,methodname,arglist)  type (*methodname) ()#endif/* Data structures for images (arrays of samples and of DCT coefficients). * On 80x86 machines, the image arrays are too big for near pointers, * but the pointer arrays can fit in near memory. */typedef JSAMPLE FAR *JSAMPROW;	/* ptr to one image row of pixel samples. */typedef JSAMPROW *JSAMPARRAY;	/* ptr to some rows (a 2-D sample array) */typedef JSAMPARRAY *JSAMPIMAGE;	/* a 3-D sample array: top index is color */typedef JCOEF JBLOCK[DCTSIZE2];	/* one block of coefficients */typedef JBLOCK FAR *JBLOCKROW;	/* pointer to one row of coefficient blocks */typedef JBLOCKROW *JBLOCKARRAY;		/* a 2-D array of coefficient blocks */typedef JBLOCKARRAY *JBLOCKIMAGE;	/* a 3-D array of coefficient blocks */typedef JCOEF FAR *JCOEFPTR;	/* useful in a couple of places *//* Types for JPEG compression parameters and working tables. *//* DCT coefficient quantization tables. */typedef struct {  /* This field directly represents the contents of a JPEG DQT marker.   * Note: the values are always given in zigzag order.   */  UINT16 quantval[DCTSIZE2];	/* quantization step for each coefficient */  /* This field is used only during compression.  It's initialized FALSE when   * the table is created, and set TRUE when it's been output to the file.   * You could suppress output of a table by setting this to TRUE.   * (See jpeg_suppress_tables for an example.)   */  boolean sent_table;		/* TRUE when table has been output */  /* NB: there are additional private fields in an actual quantization data   * structure, so don't allocate one directly.  Use jpeg_alloc_quant_table.   */} JQUANT_TBL;/* Huffman coding tables. */typedef struct {  /* These two fields directly represent the contents of a JPEG DHT marker */  UINT8 bits[17];		/* bits[k] = # of symbols with codes of */				/* length k bits; bits[0] is unused */  UINT8 huffval[256];		/* The symbols, in order of incr code length */  /* This field is used only during compression.  It's initialized FALSE when   * the table is created, and set TRUE when it's been output to the file.   * You could suppress output of a table by setting this to TRUE.   * (See jpeg_suppress_tables for an example.)   */  boolean sent_table;		/* TRUE when table has been output */  /* NB: there are additional private fields in an actual Huffman-table data   * structure, so don't allocate one directly.  Use jpeg_alloc_huff_table.   */} JHUFF_TBL;/* Basic info about one component (color channel). */typedef struct {  /* These values are fixed over the whole image. */  /* For compression, they must be supplied by parameter setup; */  /* for decompression, they are read from the SOF marker. */  int component_id;		/* identifier for this component (0..255) */  int component_index;		/* its index in SOF or cinfo->comp_info[] */  int h_samp_factor;		/* horizontal sampling factor (1..4) */  int v_samp_factor;		/* vertical sampling factor (1..4) */  int quant_tbl_no;		/* quantization table selector (0..3) */  /* These values may vary between scans. */  /* For compression, they must be supplied by parameter setup; */  /* for decompression, they are read from the SOS marker. */  int dc_tbl_no;		/* DC entropy table selector (0..3) */  int ac_tbl_no;		/* AC entropy table selector (0..3) */    /* Remaining fields should be treated as private by applications. */    /* These values are computed during compression or decompression startup: */  /* Component's size in DCT blocks.   * Any dummy blocks added to complete an MCU are not counted; therefore   * these values do not depend on whether a scan is interleaved or not.   */  JDIMENSION width_in_blocks;  JDIMENSION height_in_blocks;  /* Size of a DCT block in samples.  Always DCTSIZE for compression.   * For decompression this is the size of the output from one DCT block,   * reflecting any scaling we choose to apply during the IDCT step.   * Values of 1,2,4,8 are likely to be supported.  Note that different   * components may receive different IDCT scalings.   */  int DCT_scaled_size;  /* The downsampled dimensions are the component's actual, unpadded number   * of samples at the main buffer (preprocessing/compression interface), thus   * downsampled_width = ceil(image_width * Hi/Hmax)   * and similarly for height.  For decompression, IDCT scaling is included, so   * downsampled_width = ceil(image_width * Hi/Hmax * DCT_scaled_size/DCTSIZE)   */  JDIMENSION downsampled_width;	 /* actual width in samples */  JDIMENSION downsampled_height; /* actual height in samples */  /* This flag is used only for decompression.  In cases where some of the   * components will be ignored (eg grayscale output from YCbCr image),   * we can skip most computations for the unused components.   */  boolean component_needed;	/* do we need the value of this component? */  /* These values are computed before starting a scan of the component: */  int MCU_width;		/* number of blocks per MCU, horizontally */  int MCU_height;		/* number of blocks per MCU, vertically */  int MCU_blocks;		/* MCU_width * MCU_height */  int MCU_sample_width;		/* MCU width in samples, MCU_width*DCT_scaled_size */  int last_col_width;		/* # of non-dummy blocks across in last MCU */  int last_row_height;		/* # of non-dummy blocks down in last MCU */} jpeg_component_info;/* Known color spaces. */typedef enum {	JCS_UNKNOWN,		/* error/unspecified */	JCS_GRAYSCALE,		/* monochrome */	JCS_RGB,		/* red/green/blue */	JCS_YCbCr,		/* Y/Cb/Cr (also known as YUV) */	JCS_CMYK,		/* C/M/Y/K */	JCS_YCCK		/* Y/Cb/Cr/K */} J_COLOR_SPACE;/* Common fields between JPEG compression and decompression master structs. */#define jpeg_common_fields \  struct jpeg_error_mgr * err;	/* Error handler module */\  struct jpeg_memory_mgr * mem;	/* Memory manager module */\  struct jpeg_progress_mgr * progress; /* Progress monitor, or NULL if none */\  boolean is_decompressor;	/* so common code can tell which is which */\  int global_state		/* for checking call sequence validity *//* Routines that are to be used by both halves of the library are declared * to receive a pointer to this structure.  There are no actual instances of * jpeg_common_struct, only of jpeg_compress_struct and jpeg_decompress_struct. */struct jpeg_common_struct {  jpeg_common_fields;		/* Fields common to both master struct types */  /* Additional fields follow in an actual jpeg_compress_struct or   * jpeg_decompress_struct.  All three structs must agree on these   * initial fields!  (This would be a lot cleaner in C++.)   */};typedef struct jpeg_common_struct * j_common_ptr;typedef struct jpeg_compress_struct * j_compress_ptr;typedef struct jpeg_decompress_struct * j_decompress_ptr;/* Master record for a compression instance */struct jpeg_compress_struct {  jpeg_common_fields;		/* Fields shared with jpeg_decompress_struct */  /* Destination for compressed data */  struct jpeg_destination_mgr * dest;  /* Description of source image --- these fields must be filled in by   * outer application before starting compression.  in_color_space must   * be correct before you can even call jpeg_set_defaults().   */  JDIMENSION image_width;	/* input image width */  JDIMENSION image_height;	/* input image height */  int input_components;		/* # of color components in input image */  J_COLOR_SPACE in_color_space;	/* colorspace of input image */  double input_gamma;		/* image gamma of input image */  /* Compression parameters --- these fields must be set before calling   * jpeg_start_compress().  We recommend calling jpeg_set_defaults() to   * initialize everything to reasonable defaults, then changing anything   * the application specifically wants to change.  That way you won't get   * burnt when new parameters are added.  Also note that there are several   * helper routines to simplify changing parameters.   */  int data_precision;		/* bits of precision in image data */  int num_components;		/* # of color components in JPEG image */  J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */  jpeg_component_info * comp_info;  /* comp_info[i] describes component that appears i'th in SOF */    JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS];  /* ptrs to coefficient quantization tables, or NULL if not defined */    JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS];  JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS];  /* ptrs to Huffman coding tables, or NULL if not defined */    UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */  UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */  UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */    boolean arith_code;		/* TRUE=arithmetic coding, FALSE=Huffman */  boolean interleave;		/* TRUE=interleaved output, FALSE=not */  boolean optimize_coding;	/* TRUE=optimize entropy encoding parms */  boolean CCIR601_sampling;	/* TRUE=first samples are cosited */  int smoothing_factor;		/* 1..100, or 0 for no input smoothing */    /* The restart interval can be specified in absolute MCUs by setting   * restart_interval, or in MCU rows by setting restart_in_rows   * (in which case the correct restart_interval will be figured   * for each scan).   */  unsigned int restart_interval; /* MCUs per restart, or 0 for no restart */  int restart_in_rows;		/* if > 0, MCU rows per restart interval */  /* Parameters controlling emission of special markers. */  boolean write_JFIF_header;	/* should a JFIF marker be written? */  /* These three values are not used by the JPEG code, merely copied */  /* into the JFIF APP0 marker.  density_unit can be 0 for unknown, */  /* 1 for dots/inch, or 2 for dots/cm.  Note that the pixel aspect */  /* ratio is defined by X_density/Y_density even when density_unit=0. */  UINT8 density_unit;		/* JFIF code for pixel size units */  UINT16 X_density;		/* Horizontal pixel density */  UINT16 Y_density;		/* Vertical pixel density */  boolean write_Adobe_marker;	/* should an Adobe marker be written? */    /* State variable: index of next scanline to be written to   * jpeg_write_scanlines().  Application may use this to control its   * processing loop, e.g., "while (next_scanline < image_height)".   */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色偷偷成人一区二区三区91| 成人午夜激情片| 一本到高清视频免费精品| 欧美经典一区二区三区| 国产激情视频一区二区在线观看 | 亚洲丝袜美腿综合| 99r精品视频| 夜夜嗨av一区二区三区| 欧美性大战xxxxx久久久| 亚洲成年人网站在线观看| 欧美日本韩国一区| 麻豆91在线播放免费| 精品国产青草久久久久福利| 国产成人在线影院| 中文字幕一区二区5566日韩| 色狠狠色狠狠综合| 美女爽到高潮91| 国产欧美中文在线| 欧美亚洲动漫精品| 捆绑变态av一区二区三区| 久久理论电影网| 91老师国产黑色丝袜在线| 午夜不卡av在线| 久久久国产午夜精品| 91视频在线观看| 日韩avvvv在线播放| 久久久99久久| 色综合久久久网| 奇米综合一区二区三区精品视频| 久久蜜桃一区二区| 91久久精品国产91性色tv| 麻豆国产91在线播放| 日韩理论电影院| 日韩一卡二卡三卡国产欧美| 成人国产精品免费观看动漫| 亚洲风情在线资源站| 国产日韩欧美高清| 国产精品卡一卡二卡三| 7777精品伊人久久久大香线蕉的 | 亚洲天堂a在线| 这里只有精品99re| 不卡的电影网站| 秋霞影院一区二区| 成人欧美一区二区三区小说 | 麻豆精品视频在线观看| 亚洲欧洲成人av每日更新| 在线播放中文字幕一区| www.视频一区| 激情五月婷婷综合| 亚洲第一福利视频在线| 国产精品久久久久7777按摩| 欧美一区二区三区精品| av在线这里只有精品| 久久99这里只有精品| 亚洲高清三级视频| 亚洲欧美一区二区视频| 精品999在线播放| 欧美久久久久久久久久| 99久久国产综合精品色伊| 日韩av电影免费观看高清完整版| 一区二区三区中文免费| 中文字幕不卡在线播放| 精品不卡在线视频| 欧美一级二级三级乱码| 欧美日韩精品三区| 日本乱人伦aⅴ精品| av网站一区二区三区| 国产不卡一区视频| 韩日av一区二区| 日本亚洲最大的色成网站www| 夜夜精品视频一区二区| 18成人在线观看| 中文字幕视频一区| 国产精品理伦片| 国产精品久久免费看| 国产色综合久久| 久久久国产精品麻豆| 久久青草欧美一区二区三区| 日韩欧美国产麻豆| 精品裸体舞一区二区三区| 日韩三区在线观看| 日韩欧美成人午夜| 精品国产第一区二区三区观看体验| 日韩午夜中文字幕| 日韩欧美一二三四区| 日韩视频在线你懂得| 日韩一区二区三区电影在线观看| 欧美日韩高清一区二区| 欧美电影在线免费观看| 91精品国产欧美一区二区成人| 3d成人动漫网站| 精品毛片乱码1区2区3区| 久久久久久久网| 国产精品久久影院| 亚洲精品va在线观看| 五月综合激情网| 久久精品国产一区二区三区免费看| 日韩成人免费在线| 国产乱码一区二区三区| 成人动漫中文字幕| 欧美综合欧美视频| 中文字幕一区二| 亚洲激情图片qvod| 日韩电影免费一区| 国产剧情一区二区| 99精品视频中文字幕| 欧美性猛交xxxxxx富婆| 欧美丰满嫩嫩电影| 精品国产免费一区二区三区香蕉| 欧美激情一区二区三区全黄| 亚洲免费视频中文字幕| 免费看欧美女人艹b| 成人综合婷婷国产精品久久免费| 一本大道av一区二区在线播放 | 国产成人av电影在线观看| 岛国精品在线观看| 色欧美乱欧美15图片| 欧美一区二区免费视频| 中文字幕精品一区二区三区精品| 亚洲免费色视频| 久久丁香综合五月国产三级网站| 成人黄页在线观看| 欧美精品在线观看一区二区| 精品久久久久久综合日本欧美| 国产精品国产精品国产专区不蜜 | 99久久精品国产导航| 欧美精品v日韩精品v韩国精品v| 精品久久99ma| 亚洲女同一区二区| 裸体健美xxxx欧美裸体表演| 波多野结衣亚洲| 日韩三级视频中文字幕| 国产精品色噜噜| 视频在线观看一区| 99久精品国产| 精品国产一区二区三区不卡 | 久久精品国产77777蜜臀| www.欧美精品一二区| 欧美xxxxxxxxx| 一区二区三区欧美亚洲| 国产自产2019最新不卡| 欧美日韩高清一区二区| 亚洲欧美日韩人成在线播放| 国产一区二区久久| 91精品国产欧美一区二区18| 亚洲天堂精品在线观看| 国产成人在线视频网址| 欧美一区午夜精品| 一区二区三区免费| 99久久精品国产毛片| 久久精品这里都是精品| 蜜桃精品在线观看| 欧美日韩免费在线视频| 亚洲精品免费在线播放| 国产**成人网毛片九色| 久久综合成人精品亚洲另类欧美 | 美女国产一区二区| 欧美三级三级三级爽爽爽| 亚洲视频在线一区二区| 国产精品一区二区无线| 日韩精品专区在线影院观看 | 久久精品99国产国产精| 一区二区三区资源| 91蝌蚪国产九色| 中文字幕一区二区三区不卡| 成人午夜av在线| 国产欧美精品国产国产专区| 国产精品一二三四区| 欧美成人video| 久久66热偷产精品| 日韩一区二区三免费高清| 日韩国产精品大片| 7777精品伊人久久久大香线蕉的| 亚洲午夜免费电影| 欧美日韩精品一区二区三区四区| 亚洲一区二区成人在线观看| 色噜噜狠狠色综合欧洲selulu| 亚洲欧洲综合另类| 欧美影片第一页| 亚洲国产人成综合网站| 欧美精品欧美精品系列| 日本午夜精品一区二区三区电影| 日韩午夜av一区| 国内精品久久久久影院色| 国产亚洲精品aa| 99精品欧美一区二区三区小说| 综合久久给合久久狠狠狠97色 | 国产一区二区三区美女| 国产片一区二区三区| 成+人+亚洲+综合天堂| 亚洲免费观看高清完整版在线| 在线看日韩精品电影| 三级不卡在线观看| 欧美成人综合网站| 成人免费不卡视频| 亚洲最快最全在线视频| 91精品国产一区二区三区蜜臀| 国产在线麻豆精品观看| 国产精品白丝在线| 欧美日韩在线直播|