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

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

?? jpeglib.h

?? 在ecos 下mingui 的移植開發
?? H
?? 第 1 頁 / 共 3 頁
字號:
    /* 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)".   */  JDIMENSION next_scanline;	/* 0 .. image_height-1  */  /* Remaining fields are known throughout compressor, but generally   * should not be touched by a surrounding application.   */  /*   * These fields are computed during compression startup   */  boolean progressive_mode;	/* TRUE if scan script uses progressive mode */  int max_h_samp_factor;	/* largest h_samp_factor */  int max_v_samp_factor;	/* largest v_samp_factor */  JDIMENSION total_iMCU_rows;	/* # of iMCU rows to be input to coef ctlr */  /* The coefficient controller receives data in units of MCU rows as defined   * for fully interleaved scans (whether the JPEG file is interleaved or not).   * There are v_samp_factor * DCTSIZE sample rows of each component in an   * "iMCU" (interleaved MCU) row.   */    /*   * These fields are valid during any one scan.   * They describe the components and MCUs actually appearing in the scan.   */  int comps_in_scan;		/* # of JPEG components in this scan */  jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];  /* *cur_comp_info[i] describes component that appears i'th in SOS */    JDIMENSION MCUs_per_row;	/* # of MCUs across the image */  JDIMENSION MCU_rows_in_scan;	/* # of MCU rows in the image */    int blocks_in_MCU;		/* # of DCT blocks per MCU */  int MCU_membership[C_MAX_BLOCKS_IN_MCU];  /* MCU_membership[i] is index in cur_comp_info of component owning */  /* i'th block in an MCU */  int Ss, Se, Ah, Al;		/* progressive JPEG parameters for scan */  /*   * Links to compression subobjects (methods and private variables of modules)   */  struct jpeg_comp_master * master;  struct jpeg_c_main_controller * main;  struct jpeg_c_prep_controller * prep;  struct jpeg_c_coef_controller * coef;  struct jpeg_marker_writer * marker;  struct jpeg_color_converter * cconvert;  struct jpeg_downsampler * downsample;  struct jpeg_forward_dct * fdct;  struct jpeg_entropy_encoder * entropy;};/* Master record for a decompression instance */struct jpeg_decompress_struct {  jpeg_common_fields;		/* Fields shared with jpeg_compress_struct */  /* Source of compressed data */  struct jpeg_source_mgr * src;  /* Basic description of image --- filled in by jpeg_read_header(). */  /* Application may inspect these values to decide how to process image. */  JDIMENSION image_width;	/* nominal image width (from SOF marker) */  JDIMENSION image_height;	/* nominal image height */  int num_components;		/* # of color components in JPEG image */  J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */  /* Decompression processing parameters --- these fields must be set before   * calling jpeg_start_decompress().  Note that jpeg_read_header() initializes   * them to default values.   */  J_COLOR_SPACE out_color_space; /* colorspace for output */  unsigned int scale_num, scale_denom; /* fraction by which to scale image */  double output_gamma;		/* image gamma wanted in output */  boolean buffered_image;	/* TRUE=multiple output passes */  boolean raw_data_out;		/* TRUE=downsampled data wanted */  J_DCT_METHOD dct_method;	/* IDCT algorithm selector */  boolean do_fancy_upsampling;	/* TRUE=apply fancy upsampling */  boolean do_block_smoothing;	/* TRUE=apply interblock smoothing */  boolean quantize_colors;	/* TRUE=colormapped output wanted */  /* the following are ignored if not quantize_colors: */  J_DITHER_MODE dither_mode;	/* type of color dithering to use */  boolean two_pass_quantize;	/* TRUE=use two-pass color quantization */  int desired_number_of_colors;	/* max # colors to use in created colormap */  /* these are significant only in buffered-image mode: */  boolean enable_1pass_quant;	/* enable future use of 1-pass quantizer */  boolean enable_external_quant;/* enable future use of external colormap */  boolean enable_2pass_quant;	/* enable future use of 2-pass quantizer */  /* Description of actual output image that will be returned to application.   * These fields are computed by jpeg_start_decompress().   * You can also use jpeg_calc_output_dimensions() to determine these values   * in advance of calling jpeg_start_decompress().   */  JDIMENSION output_width;	/* scaled image width */  JDIMENSION output_height;	/* scaled image height */  int out_color_components;	/* # of color components in out_color_space */  int output_components;	/* # of color components returned */  /* output_components is 1 (a colormap index) when quantizing colors;   * otherwise it equals out_color_components.   */  int rec_outbuf_height;	/* min recommended height of scanline buffer */  /* If the buffer passed to jpeg_read_scanlines() is less than this many rows   * high, space and time will be wasted due to unnecessary data copying.   * Usually rec_outbuf_height will be 1 or 2, at most 4.   */  /* When quantizing colors, the output colormap is described by these fields.   * The application can supply a colormap by setting colormap non-NULL before   * calling jpeg_start_decompress; otherwise a colormap is created during   * jpeg_start_decompress or jpeg_start_output.   * The map has out_color_components rows and actual_number_of_colors columns.   */  int actual_number_of_colors;	/* number of entries in use */  JSAMPARRAY colormap;		/* The color map as a 2-D pixel array */  /* State variables: these variables indicate the progress of decompression.   * The application may examine these but must not modify them.   */  /* Row index of next scanline to be read from jpeg_read_scanlines().   * Application may use this to control its processing loop, e.g.,   * "while (output_scanline < output_height)".   */  JDIMENSION output_scanline;	/* 0 .. output_height-1  */  /* Current input scan number and number of iMCU rows completed in scan.   * These indicate the progress of the decompressor input side.   */  int input_scan_number;	/* Number of SOS markers seen so far */  JDIMENSION input_iMCU_row;	/* Number of iMCU rows completed */  /* The "output scan number" is the notional scan being displayed by the   * output side.  The decompressor will not allow output scan/row number   * to get ahead of input scan/row, but it can fall arbitrarily far behind.   */  int output_scan_number;	/* Nominal scan number being displayed */  JDIMENSION output_iMCU_row;	/* Number of iMCU rows read */  /* Current progression status.  coef_bits[c][i] indicates the precision   * with which component c's DCT coefficient i (in zigzag order) is known.   * It is -1 when no data has yet been received, otherwise it is the point   * transform (shift) value for the most recent scan of the coefficient   * (thus, 0 at completion of the progression).   * This pointer is NULL when reading a non-progressive file.   */  int (*coef_bits)[DCTSIZE2];	/* -1 or current Al value for each coef */  /* Internal JPEG parameters --- the application usually need not look at   * these fields.  Note that the decompressor output side may not use   * any parameters that can change between scans.   */  /* Quantization and Huffman tables are carried forward across input   * datastreams when processing abbreviated JPEG datastreams.   */  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 */  /* These parameters are never carried across datastreams, since they   * are given in SOF/SOS markers or defined to be reset by SOI.   */  int data_precision;		/* bits of precision in image data */  jpeg_component_info * comp_info;  /* comp_info[i] describes component that appears i'th in SOF */  boolean progressive_mode;	/* TRUE if SOFn specifies progressive mode */  boolean arith_code;		/* TRUE=arithmetic coding, FALSE=Huffman */  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 */  unsigned int restart_interval; /* MCUs per restart interval, or 0 for no restart */  /* These fields record data obtained from optional markers recognized by   * the JPEG library.   */  boolean saw_JFIF_marker;	/* TRUE iff a JFIF APP0 marker was found */  /* Data copied from JFIF marker: */  UINT8 density_unit;		/* JFIF code for pixel size units */  UINT16 X_density;		/* Horizontal pixel density */  UINT16 Y_density;		/* Vertical pixel density */  boolean saw_Adobe_marker;	/* TRUE iff an Adobe APP14 marker was found */  UINT8 Adobe_transform;	/* Color transform code from Adobe marker */  boolean CCIR601_sampling;	/* TRUE=first samples are cosited */  /* Remaining fields are known throughout decompressor, but generally   * should not be touched by a surrounding application.   */  /*   * These fields are computed during decompression startup   */  int max_h_samp_factor;	/* largest h_samp_factor */  int max_v_samp_factor;	/* largest v_samp_factor */  int min_DCT_scaled_size;	/* smallest DCT_scaled_size of any component */  JDIMENSION total_iMCU_rows;	/* # of iMCU rows in image */  /* The coefficient controller's input and output progress is measured in   * units of "iMCU" (interleaved MCU) rows.  These are the same as MCU rows   * in fully interleaved JPEG scans, but are used whether the scan is   * interleaved or not.  We define an iMCU row as v_samp_factor DCT block   * rows of each component.  Therefore, the IDCT output contains   * v_samp_factor*DCT_scaled_size sample rows of a component per iMCU row.   */  JSAMPLE * sample_range_limit; /* table for fast range-limiting */  /*   * These fields are valid during any one scan.   * They describe the components and MCUs actually appearing in the scan.   * Note that the decompressor output side must not use these fields.   */  int comps_in_scan;		/* # of JPEG components in this scan */  jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];  /* *cur_comp_info[i] describes component that appears i'th in SOS */  JDIMENSION MCUs_per_row;	/* # of MCUs across the image */  JDIMENSION MCU_rows_in_scan;	/* # of MCU rows in the image */  int blocks_in_MCU;		/* # of DCT blocks per MCU */  int MCU_membership[D_MAX_BLOCKS_IN_MCU];  /* MCU_membership[i] is index in cur_comp_info of component owning */  /* i'th block in an MCU */  int Ss, Se, Ah, Al;		/* progressive JPEG parameters for scan */  /* This field is shared between entropy decoder and marker parser.   * It is either zero or the code of a JPEG marker that has been   * read from the data source, but has not yet been processed.   */  int unread_marker;  /*   * Links to decompression subobjects (methods, private variables of modules)   */  struct jpeg_decomp_master * master;  struct jpeg_d_main_controller * main;  struct jpeg_d_coef_controller * coef;  struct jpeg_d_post_controller * post;  struct jpeg_input_controller * inputctl;  struct jpeg_marker_reader * marker;  struct jpeg_entropy_decoder * entropy;  struct jpeg_inverse_dct * idct;  struct jpeg_upsampler * upsample;  struct jpeg_color_deconverter * cconvert;  struct jpeg_color_quantizer * cquantize;};/* "Object" declarations for JPEG modules that may be supplied or called * directly by the surrounding application. * As with all objects in the JPEG library, these structs only define the * publicly visible methods and state variables of a module.  Additional * private fields may exist after the public ones. *//* Error handler object */struct jpeg_error_mgr {  /* Error exit handler: does not return to caller */  JMETHOD(void, error_exit, (j_common_ptr cinfo));  /* Conditionally emit a trace or warning message */  JMETHOD(void, emit_message, (j_common_ptr cinfo, int msg_level));  /* Routine that actually outputs a trace or error message */  JMETHOD(void, output_message, (j_common_ptr cinfo));  /* Format a message string for the most recent JPEG error or message */  JMETHOD(void, format_message, (j_common_ptr cinfo, char * buffer));#define JMSG_LENGTH_MAX  200	/* recommended size of format_message buffer */  /* Reset error state variables at start of a new image */  JMETHOD(void, reset_error_mgr, (j_common_ptr cinfo));    /* The message ID code and any parameters are saved here.   * A message can have one string parameter or up to 8 int parameters.   */  int msg_code;#define JMSG_STR_PARM_MAX  80  union {    int i[8];    char s[JMSG_STR_PARM_MAX];  } msg_parm;    /* Standard state variables for error facility */    int trace_level;		/* max msg_level that will be displayed */    /* For recoverable corrupt-data errors, we emit a warning message,   * but keep going unless emit_message chooses to abort.  emit_message   * should count warnings in num_warnings.  The surrounding application   * can check for bad data by seeing if num_warnings is nonzero at the   * end of processing.   */  long num_warnings;		/* number of corrupt-data warnings */  /* These fields point to the table(s) of error message strings.   * An application can change the table pointer to switch to a different   * message list (typically, to change the language in which errors are   * reported).  Some applications may wish to add additional error codes   * that will be handled by the JPEG library error mechanism; the second   * table pointer is used for this purpose.   *   * First table includes all errors generated by JPEG library itself.   * Error code 0 is reserved for a "no such error string" message.   */  const char * const * jpeg_message_table; /* Library errors */  int last_jpeg_message;    /* Table contains strings 0..last_jpeg_message */  /* Second table can be added by application (see cjpeg/djpeg for example).

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产91在线|亚洲| 国产午夜精品福利| 中文欧美字幕免费| 日本一不卡视频| 色网综合在线观看| 中文字幕欧美区| 国内一区二区在线| 欧美人与禽zozo性伦| 亚洲日本在线观看| 国产乱子伦视频一区二区三区 | 91在线观看下载| 精品精品国产高清一毛片一天堂| 亚洲午夜一区二区| 欧美精品一区二区三区蜜桃视频 | 久久久99精品免费观看不卡| 日韩精品电影在线观看| 欧美在线免费观看亚洲| 亚洲欧美综合色| 懂色av中文一区二区三区| 日韩精品在线一区| 奇米精品一区二区三区在线观看| 欧美三级日韩在线| 风间由美中文字幕在线看视频国产欧美 | 99精品欧美一区二区三区小说 | 欧美一二三四区在线| 亚州成人在线电影| 欧美精品自拍偷拍| 亚洲靠逼com| 在线观看欧美日本| 午夜精品久久久久久久久久久| 欧洲一区在线观看| 亚洲高清久久久| 欧美日韩aaaaa| 天涯成人国产亚洲精品一区av| 91福利在线观看| 亚洲国产另类av| 欧美日韩精品欧美日韩精品| 首页国产欧美久久| 欧美一区二区三区四区久久| 久久99深爱久久99精品| 精品盗摄一区二区三区| 国产精品自拍一区| 国产精品久久久久久福利一牛影视| 成人黄色小视频| 一区二区三区日韩精品视频| 欧美日韩国产一级片| 免费久久99精品国产| 久久综合久久久久88| av在线不卡网| 日韩黄色免费网站| 欧美国产丝袜视频| 欧美一区二区三区视频在线观看 | 欧美一级艳片视频免费观看| 日本特黄久久久高潮| 久久天天做天天爱综合色| 精品日韩欧美在线| 国产精品自拍三区| 亚洲精品视频自拍| 日韩欧美亚洲国产精品字幕久久久| 国产一区二区免费视频| 亚洲欧美另类综合偷拍| 制服.丝袜.亚洲.中文.综合| 国产在线视频一区二区三区| 亚洲免费资源在线播放| 日韩欧美一区二区久久婷婷| 成人免费av资源| 天天做天天摸天天爽国产一区| 国产日韩av一区二区| 欧美日韩成人一区二区| 成人午夜激情视频| 亚洲123区在线观看| 国产精品入口麻豆九色| 欧美一区二区视频免费观看| 9i在线看片成人免费| 免费在线看成人av| 亚洲欧美另类在线| 国产欧美一区二区精品性色| 欧美体内she精视频| 国产经典欧美精品| 秋霞国产午夜精品免费视频| 亚洲欧美综合另类在线卡通| 精品国产91久久久久久久妲己| 色狠狠一区二区三区香蕉| 国产一区二区女| 另类中文字幕网| 亚洲高清三级视频| 亚洲日本在线a| 国产精品人人做人人爽人人添| 欧美一级淫片007| 色综合久久中文综合久久牛| 国产乱码精品一品二品| 无吗不卡中文字幕| 亚洲曰韩产成在线| 亚洲图片你懂的| 国产欧美日韩另类一区| wwwwww.欧美系列| 亚洲一区影音先锋| 亚洲欧洲国产专区| 国产精品天干天干在观线| 久久嫩草精品久久久精品| 日韩午夜三级在线| 3d动漫精品啪啪| 欧美日韩一区二区欧美激情| 色婷婷综合久久久| 91香蕉视频黄| 色综合天天综合色综合av| 成人久久久精品乱码一区二区三区| 国产乱码精品1区2区3区| 狠狠色伊人亚洲综合成人| 精品夜夜嗨av一区二区三区| 美日韩黄色大片| 久久av老司机精品网站导航| 日韩综合一区二区| 日本亚洲免费观看| 麻豆成人久久精品二区三区红| 丝袜国产日韩另类美女| 日韩电影在线观看一区| 蜜臀久久久久久久| 国内欧美视频一区二区| 国产麻豆91精品| 99精品国产一区二区三区不卡| 91麻豆免费视频| 7878成人国产在线观看| 日韩欧美一级片| 国产精品无人区| 亚洲精品视频免费看| 午夜视频一区二区| 极品少妇xxxx偷拍精品少妇| 国产成人精品免费看| 91尤物视频在线观看| 欧美日韩一区不卡| 亚洲精品在线观看视频| 久久美女高清视频| 综合久久给合久久狠狠狠97色 | 中文字幕不卡在线观看| ●精品国产综合乱码久久久久 | 日韩欧美国产综合| 91同城在线观看| 亚洲一区二区在线观看视频 | 欧美一区二视频| 久久久美女毛片| 亚洲日本欧美天堂| 全国精品久久少妇| 成人影视亚洲图片在线| 欧美三级资源在线| 久久精品视频免费观看| 亚洲自拍偷拍网站| 国产激情偷乱视频一区二区三区| 91一区二区三区在线观看| 91精品国产乱码| 最新高清无码专区| 极品尤物av久久免费看| 色一情一伦一子一伦一区| 日韩一级在线观看| 亚洲欧美日韩精品久久久久| 精品一区二区三区在线播放| 99天天综合性| 久久一留热品黄| 亚洲18色成人| 国产精品福利一区| 欧美精品一区二区久久婷婷| 国产精品乱码一区二三区小蝌蚪| 视频一区二区三区入口| 成人激情av网| 2021久久国产精品不只是精品| 一区二区三区.www| 成人午夜激情在线| 2020国产精品| 欧美aa在线视频| 欧美综合一区二区三区| 91久久久免费一区二区| 另类小说图片综合网| 99精品黄色片免费大全| 欧美一区二区三区视频免费| 亚洲乱码国产乱码精品精可以看| 国产综合久久久久久久久久久久| 7777精品伊人久久久大香线蕉 | 亚洲女厕所小便bbb| 久久不见久久见免费视频7| 欧美日韩高清影院| 亚洲成人动漫av| 91精品1区2区| 亚洲精品水蜜桃| 91丝袜呻吟高潮美腿白嫩在线观看| 国产欧美va欧美不卡在线| 精品一区二区三区免费| 日韩一二三区视频| 日本一区中文字幕| 欧美美女喷水视频| 亚洲国产精品一区二区www在线| 99riav一区二区三区| 亚洲品质自拍视频| 色诱亚洲精品久久久久久| 综合精品久久久| 色天天综合色天天久久| 国产精品久久久久久久久晋中| 不卡影院免费观看| 中文字幕一区二| 91女神在线视频| 在线视频你懂得一区|