亚洲欧美第一页_禁久久精品乱码_粉嫩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 頁
字號:
  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   */  int max_h_samp_factor;	/* largest h_samp_factor */  int max_v_samp_factor;	/* largest v_samp_factor */    /*   * 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[MAX_BLOCKS_IN_MCU];  /* MCU_membership[i] is index in cur_comp_info of component owning */  /* i'th block in an MCU */  /*   * 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 quantize_colors;	/* T if output is a colormapped format */  /* the following are ignored if not quantize_colors: */  boolean two_pass_quantize;	/* use two-pass color quantization? */  boolean use_dithering;	/* want color dithering? */  int desired_number_of_colors;	/* max number of colors to use */  boolean do_block_smoothing;	/* T = apply cross-block smoothing */  boolean do_fancy_upsampling;	/* T = apply fancy upsampling */  boolean want_raw_output;      /* T = raw (YCbCr subsampled) output*/  /* 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.   * 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 variable: index of next scaled 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  */  /* Internal JPEG parameters --- the application usually need not look at   * these fields.   */  /* 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 */  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 */  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 to be output by coef ctlr */  /* The coefficient controller outputs 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 * DCT_scaled_size sample rows of each component   * in an "iMCU" (interleaved MCU) 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.   */  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[MAX_BLOCKS_IN_MCU];  /* MCU_membership[i] is index in cur_comp_info of component owning */  /* i'th block in an MCU */  /* 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_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 * cquantizer;};/* "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).   * It contains strings numbered first_addon_message..last_addon_message.   */  const char * const * addon_message_table; /* Non-library errors */  int first_addon_message;	/* code for first string in addon table */  int last_addon_message;	/* code for last string in addon table */};/* Progress monitor object */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品久久99ma| 色婷婷一区二区| 午夜精品爽啪视频| 一区二区三区四区不卡视频| 国产精品欧美久久久久无广告| www亚洲一区| 久久久一区二区| 久久久久久免费| 中文字幕va一区二区三区| 国产午夜亚洲精品午夜鲁丝片| 久久精品视频免费观看| 国产日韩成人精品| 一色桃子久久精品亚洲| 中文字幕一区av| 亚洲一区二区在线免费观看视频| 夜夜操天天操亚洲| 日韩福利视频网| 寂寞少妇一区二区三区| 福利电影一区二区| 91捆绑美女网站| 在线播放/欧美激情| 国产精品人人做人人爽人人添| 中文字幕亚洲在| 五月天精品一区二区三区| 狠狠色丁香婷婷综合| 99久久99久久精品免费看蜜桃 | 亚洲国产综合在线| 午夜av一区二区三区| 裸体健美xxxx欧美裸体表演| 国产精品资源站在线| 97aⅴ精品视频一二三区| 欧美日韩1234| 国产欧美一区二区精品久导航 | 欧美亚洲动漫精品| 欧美精品一区在线观看| 亚洲美女电影在线| 蓝色福利精品导航| 在线一区二区三区四区| 精品少妇一区二区三区 | 欧美色偷偷大香| 国产天堂亚洲国产碰碰| 亚洲成人精品影院| 高清shemale亚洲人妖| 欧美电影影音先锋| 亚洲天堂免费看| 激情综合色播激情啊| 欧美在线不卡视频| 欧美国产一区在线| 日产精品久久久久久久性色| 日韩一区二区三区视频在线观看| 久久午夜电影网| 亚洲在线视频网站| av在线不卡网| 国产午夜精品在线观看| 日韩综合在线视频| 欧美亚洲综合网| 亚洲国产精品二十页| 麻豆精品一二三| 欧美日韩亚洲综合一区| 亚洲男人的天堂在线观看| 国产成人一级电影| 欧美一区二区三区视频在线观看| 一区二区三区在线视频观看58| 国产精品888| 精品999久久久| 老司机精品视频在线| 欧美猛男男办公室激情| 一区二区不卡在线视频 午夜欧美不卡在 | 日韩一区二区三区四区五区六区| 夜夜精品视频一区二区| 色8久久精品久久久久久蜜| 国产精品五月天| 国产在线精品不卡| 久久久久久久综合狠狠综合| 免费不卡在线视频| 日韩精品一区二区三区视频播放 | 欧美人妖巨大在线| 亚洲人成电影网站色mp4| 不卡av在线免费观看| 中文字幕av在线一区二区三区| 国产成人午夜精品5599 | 99久久综合99久久综合网站| 亚洲国产成人在线| av动漫一区二区| 亚洲欧美日韩久久精品| 久久一区二区三区四区| 国内外精品视频| 久久亚洲影视婷婷| 成人夜色视频网站在线观看| 欧美激情一区二区三区不卡| 国产99久久久国产精品潘金| 中文字幕av一区 二区| av成人免费在线| 一区二区三区电影在线播| 欧美日韩成人综合| 国内外成人在线视频| 国产精品美女视频| 日本韩国欧美三级| 奇米四色…亚洲| 久久久精品欧美丰满| 91网页版在线| 免费在线观看一区二区三区| 久久先锋影音av鲁色资源网| 成人av网站在线观看免费| 亚洲精品伦理在线| 日韩一级二级三级精品视频| 国产福利91精品| 亚洲综合清纯丝袜自拍| 日韩精品在线网站| 91美女视频网站| 免费成人av资源网| 日韩久久一区二区| 91精品国产综合久久小美女| 成人在线一区二区三区| 天天综合网 天天综合色| www日韩大片| 欧美色大人视频| 欧美乱熟臀69xxxxxx| 国产成a人无v码亚洲福利| 一卡二卡欧美日韩| 中文字幕乱码一区二区免费| 91豆麻精品91久久久久久| 国产一区在线视频| 五月天欧美精品| 亚洲日本va午夜在线电影| 精品日本一线二线三线不卡| 在线区一区二视频| 成人av综合在线| 久久黄色级2电影| 欧美亚日韩国产aⅴ精品中极品| 国产精品亚洲综合一区在线观看| 91麻豆精品国产91久久久更新时间| 久久国产夜色精品鲁鲁99| 亚洲美女视频一区| 国产日韩精品久久久| 欧美一区二区三区成人| 亚洲综合色视频| 中文字幕字幕中文在线中不卡视频| 亚洲日本在线看| 性做久久久久久久免费看| 久久精工是国产品牌吗| 成人午夜电影久久影院| 欧美最猛性xxxxx直播| 在线播放欧美女士性生活| 午夜精品久久久久久久99樱桃 | 亚洲成人在线网站| 久久99精品久久只有精品| 国产不卡在线视频| 欧美少妇性性性| 久久久亚洲午夜电影| 亚洲另类春色校园小说| 蜜桃久久av一区| 9l国产精品久久久久麻豆| 91麻豆精品国产91久久久久| 国产欧美日韩三级| 亚洲国产成人va在线观看天堂| 久久99国内精品| 色天使色偷偷av一区二区| 欧美草草影院在线视频| 亚洲女人小视频在线观看| 精品一区二区在线免费观看| 97精品视频在线观看自产线路二| 欧美久久久久久久久久| 国产精品美女视频| 美洲天堂一区二卡三卡四卡视频| 成人午夜看片网址| 日韩三级视频在线观看| 亚洲久草在线视频| 国产一区欧美一区| 欧美一区二区在线不卡| 亚洲欧洲制服丝袜| 国产精品18久久久久久久久久久久 | 国产原创一区二区| 欧美喷潮久久久xxxxx| 国产精品第13页| 国产精品一区二区三区99 | 99久久精品免费| 亚洲精品一区二区三区蜜桃下载| 亚洲高清视频在线| zzijzzij亚洲日本少妇熟睡| 精品国产乱码久久久久久1区2区 | 日韩福利视频导航| 欧美综合亚洲图片综合区| 国产精品丝袜久久久久久app| 麻豆成人免费电影| 在线播放国产精品二区一二区四区| 亚洲你懂的在线视频| 成人性色生活片| 久久久777精品电影网影网 | 久久成人18免费观看| 欧美日韩色一区| 一区二区免费在线播放| av成人免费在线| 亚洲色图另类专区| 99国产麻豆精品| 亚洲精品中文在线观看| 91色九色蝌蚪| 樱花草国产18久久久久| 91亚洲精品久久久蜜桃网站| 国产精品久久久久影视|