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

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

?? jpeglib.h

?? 基于Linux的ffmepg decoder
?? H
?? 第 1 頁 / 共 4 頁
字號:
   */  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? */  UINT8 JFIF_major_version;	/* What to write for the JFIF version number */  UINT8 JFIF_minor_version;  /* 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)".   */  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;  jpeg_scan_info * script_space; /* workspace for jpeg_simple_progression */  int script_space_size;};/* 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; only valid if saw_JFIF_marker is TRUE: */  UINT8 JFIF_major_version;	/* JFIF version number */  UINT8 JFIF_minor_version;  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 */  /* Aside from the specific data retained from APPn markers known to the   * library, the uninterpreted contents of any or all APPn and COM markers   * can be saved in a list for examination by the application.   */  jpeg_saved_marker_ptr marker_list; /* Head of list of saved markers */  /* 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;    // added by Leo  void *pCodec;  boolean invalid_next_restart_marker; // to indicate whehter we should stop the VLD engine in case there is invalid restart marker sequence};/* "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;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久一区二区三区国产精品| 91精品午夜视频| 欧美日韩久久不卡| 久久综合色婷婷| 一区二区高清免费观看影视大全| 精品在线你懂的| 欧美性做爰猛烈叫床潮| 国产欧美精品日韩区二区麻豆天美| 午夜精品久久久久| 91色九色蝌蚪| 欧美激情一区二区三区不卡 | 99麻豆久久久国产精品免费优播| 欧美电影影音先锋| 亚洲激情欧美激情| 99免费精品视频| 国产丝袜美腿一区二区三区| 爽好久久久欧美精品| 91成人看片片| 亚洲色图欧美在线| 成人午夜视频福利| 国产欧美一区二区精品忘忧草 | 成人免费视频播放| 欧美精品 日韩| 欧美日韩国产免费一区二区| 丰满少妇在线播放bd日韩电影| 一区二区三区高清不卡| 日韩一区二区不卡| 欧美精品免费视频| 99综合影院在线| 国产成人亚洲综合色影视| 精品一区二区在线看| 成人欧美一区二区三区1314| 精品乱人伦小说| 一区二区三区四区高清精品免费观看 | 精品国产乱码久久久久久老虎| 男男成人高潮片免费网站| 69堂国产成人免费视频| 亚洲mv大片欧洲mv大片精品| 欧美日韩国产乱码电影| 日韩综合小视频| 在线播放日韩导航| 日本一不卡视频| 久久尤物电影视频在线观看| 国产成人av电影在线观看| 久久久久88色偷偷免费| 成人夜色视频网站在线观看| 亚洲人成精品久久久久| 欧美午夜精品理论片a级按摩| 图片区小说区区亚洲影院| 欧美日本不卡视频| 久草精品在线观看| 国产精品久久久久久久蜜臀| 色婷婷综合久久久久中文| 五月婷婷久久丁香| 2023国产精品自拍| 成人免费毛片片v| 一卡二卡三卡日韩欧美| 日韩欧美黄色影院| 成人污视频在线观看| 亚洲一区二区视频在线观看| 日韩一级成人av| 成人黄色777网| 亚洲电影在线免费观看| 久久免费午夜影院| 色悠久久久久综合欧美99| 奇米影视在线99精品| 国产香蕉久久精品综合网| 欧美性感一类影片在线播放| 久久不见久久见免费视频1| 国产精品视频你懂的| 久久久www免费人成精品| 91免费看片在线观看| 奇米亚洲午夜久久精品| 国产精品三级视频| 91精品午夜视频| 成人国产精品免费网站| 青青草成人在线观看| 91猫先生在线| 亚洲国产精品成人综合| 91亚洲精品乱码久久久久久蜜桃| 久久亚洲精精品中文字幕早川悠里| 自拍偷拍欧美精品| 成人动漫在线一区| 国产精品二区一区二区aⅴ污介绍| 亚洲日本在线看| 99re热这里只有精品视频| 国产精品污www在线观看| 精品一区二区成人精品| 精品成人私密视频| 成人av免费在线| 久久国产精品99久久人人澡| 一区二区三区资源| 日本一区二区三区在线观看| 91精品一区二区三区在线观看| 91女神在线视频| 国产精品亚洲一区二区三区妖精| 午夜在线电影亚洲一区| 欧美国产综合一区二区| 欧美无乱码久久久免费午夜一区 | 欧美天天综合网| 色嗨嗨av一区二区三区| 99久久99久久精品免费观看| 国产成人精品免费在线| 国产剧情一区二区三区| 精品一区二区三区在线播放视频| 日韩精品乱码免费| 亚洲综合在线电影| 国产精品传媒在线| 日本一区二区不卡视频| 久久综合久久99| 久久综合久久综合九色| 日韩精品综合一本久道在线视频| 91精品综合久久久久久| 日韩视频在线一区二区| 欧美剧在线免费观看网站 | 日本怡春院一区二区| 日韩精品乱码免费| 免费人成在线不卡| 日韩电影免费在线看| 天天操天天综合网| 日本在线播放一区二区三区| 日本免费在线视频不卡一不卡二 | 91捆绑美女网站| 欧美三区在线视频| 欧美精选午夜久久久乱码6080| 日韩午夜精品电影| 精品国产a毛片| 中文字幕av一区 二区| 中文字幕一区日韩精品欧美| 一区二区三区精品视频在线| 亚洲第一激情av| 国产在线精品国自产拍免费| 国产99久久久久| 91成人免费在线| 欧美本精品男人aⅴ天堂| 久久九九久精品国产免费直播| 国产精品不卡在线| 一区二区成人在线视频| 日本麻豆一区二区三区视频| 国产一区二区在线影院| 不卡的av电影在线观看| 欧美日韩大陆一区二区| 久久久噜噜噜久久人人看| 亚洲免费成人av| 美女视频黄a大片欧美| 国产成人av一区二区| 91高清视频在线| 久久日韩粉嫩一区二区三区| 亚洲色欲色欲www在线观看| 亚洲sss视频在线视频| 国产乱码精品1区2区3区| 色欧美88888久久久久久影院| 日韩无一区二区| 亚洲欧洲韩国日本视频| 日韩中文欧美在线| 成人av一区二区三区| 欧美精品国产精品| 中文字幕一区二区三区在线不卡| 奇米精品一区二区三区四区 | 国产精品系列在线观看| 色噜噜久久综合| 2023国产精华国产精品| 一区二区三区波多野结衣在线观看 | 亚洲精品一区在线观看| 亚洲三级在线看| 韩国精品一区二区| 欧美在线不卡视频| 国产欧美一区二区三区鸳鸯浴| 午夜精品爽啪视频| 成人激情免费视频| 精品区一区二区| 亚洲123区在线观看| 成人18视频日本| 国产亚洲精品bt天堂精选| 日韩一区精品视频| 色丁香久综合在线久综合在线观看| 久久久91精品国产一区二区精品 | 久久久国产精品午夜一区ai换脸| 午夜激情一区二区| 色婷婷狠狠综合| |精品福利一区二区三区| 国产成人精品免费在线| 精品对白一区国产伦| 日韩成人av影视| 欧美日韩免费观看一区三区| 亚洲欧洲国产日本综合| 波多野结衣亚洲一区| 欧美国产日韩亚洲一区| 激情亚洲综合在线| 日韩一区二区三区电影| 三级欧美韩日大片在线看| 日本精品视频一区二区三区| 亚洲欧美乱综合| 91视视频在线观看入口直接观看www | 欧美mv和日韩mv的网站| 麻豆91免费看| 欧美大胆人体bbbb| 久久电影网站中文字幕| 精品成a人在线观看| 国精产品一区一区三区mba桃花|