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

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

?? jpeglib.h

?? windows ce開發技巧與實例光盤代碼
?? H
?? 第 1 頁 / 共 4 頁
字號:
  /* 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;
};


/* "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 */

struct jpeg_progress_mgr {
  JMETHOD(void, progress_monitor, (j_common_ptr cinfo));

  long pass_counter;		/* work units completed in this pass */
  long pass_limit;		/* total number of work units in this pass */
  int completed_passes;		/* passes completed so far */
  int total_passes;		/* total number of passes expected */
};


/* Data destination object for compression */

struct jpeg_destination_mgr {
  JOCTET * next_output_byte;	/* => next byte to write in buffer */
  size_t free_in_buffer;	/* # of byte spaces remaining in buffer */

  JMETHOD(void, init_destination, (j_compress_ptr cinfo));
  JMETHOD(boolean, empty_output_buffer, (j_compress_ptr cinfo));
  JMETHOD(void, term_destination, (j_compress_ptr cinfo));
};


/* Data source object for decompression */

struct jpeg_source_mgr {
  const JOCTET * next_input_byte; /* => next byte to read from buffer */
  size_t bytes_in_buffer;	/* # of bytes remaining in buffer */

  JMETHOD(void, init_source, (j_decompress_ptr cinfo));
  JMETHOD(boolean, fill_input_buffer, (j_decompress_ptr cinfo));
  JMETHOD(void, skip_input_data, (j_decompress_ptr cinfo, long num_bytes));
  JMETHOD(boolean, resync_to_restart, (j_decompress_ptr cinfo, int desired));
  JMETHOD(void, term_source, (j_decompress_ptr cinfo));
};


/* Memory manager object.
 * Allocates "small" objects (a few K total), "large" objects (tens of K),
 * and "really big" objects (virtual arrays with backing store if needed).
 * The memory manager does not allow individual objects to be freed; rather,
 * each created object is assigned to a pool, and whole pools can be freed
 * at once.  This is faster and more convenient than remembering exactly what
 * to free, especially where malloc()/free() are not too speedy.
 * NB: alloc routines never return NULL.  They exit to error_exit if not
 * successful.
 */

#define JPOOL_PERMANENT	0	/* lasts until master record is destroyed */
#define JPOOL_IMAGE	1	/* lasts until done with image/datastream */
#define JPOOL_NUMPOOLS	2

typedef struct jvirt_sarray_control * jvirt_sarray_ptr;
typedef struct jvirt_barray_control * jvirt_barray_ptr;


struct jpeg_memory_mgr {
  /* Method pointers */
  JMETHOD(void *, alloc_small, (j_common_ptr cinfo, int pool_id,
				size_t sizeofobject));
  JMETHOD(void FAR *, alloc_large, (j_common_ptr cinfo, int pool_id,
				     size_t sizeofobject));
  JMETHOD(JSAMPARRAY, alloc_sarray, (j_common_ptr cinfo, int pool_id,
				     JDIMENSION samplesperrow,
				     JDIMENSION numrows));
  JMETHOD(JBLOCKARRAY, alloc_barray, (j_common_ptr cinfo, int pool_id,
				      JDIMENSION blocksperrow,
				      JDIMENSION numrows));
  JMETHOD(jvirt_sarray_ptr, request_virt_sarray, (j_common_ptr cinfo,
						  int pool_id,
						  boolean pre_zero,
						  JDIMENSION samplesperrow,
						  JDIMENSION numrows,
						  JDIMENSION maxaccess));
  JMETHOD(jvirt_barray_ptr, request_virt_barray, (j_common_ptr cinfo,
						  int pool_id,
						  boolean pre_zero,
						  JDIMENSION blocksperrow,
						  JDIMENSION numrows,
						  JDIMENSION maxaccess));
  JMETHOD(void, realize_virt_arrays, (j_common_ptr cinfo));
  JMETHOD(JSAMPARRAY, access_virt_sarray, (j_common_ptr cinfo,
					   jvirt_sarray_ptr ptr,
					   JDIMENSION start_row,
					   JDIMENSION num_rows,
					   boolean writable));
  JMETHOD(JBLOCKARRAY, access_virt_barray, (j_common_ptr cinfo,
					    jvirt_barray_ptr ptr,
					    JDIMENSION start_row,
					    JDIMENSION num_rows,
					    boolean writable));
  JMETHOD(void, free_pool, (j_common_ptr cinfo, int pool_id));
  JMETHOD(void, self_destruct, (j_common_ptr cinfo));

  /* Limit on memory allocation for this JPEG object.  (Note that this is
   * merely advisory, not a guaranteed maximum; it only affects the space
   * used for virtual-array buffers.)  May be changed by outer application
   * after creating the JPEG object.
   */
  long max_memory_to_use;

  /* Maximum allocation request accepted by alloc_large. */
  long max_alloc_chunk;
};


/* Routine signature for application-supplied marker processing methods.
 * Need not pass marker code since it is stored in cinfo->unread_marker.
 */
typedef JMETHOD(boolean, jpeg_marker_parser_method, (j_decompress_ptr cinfo));


/* Declarations for routines called by application.
 * The JPP macro hides prototype parameters from compilers that can't cope.
 * Note JPP requires double parentheses.
 */

#ifdef HAVE_PROTOTYPES
#define JPP(arglist)	arglist
#else
#define JPP(arglist)	()
#endif


/* Short forms of external names for systems with brain-damaged linkers.
 * We shorten external names to be unique in the first six letters, which

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人蜜臀av电影| 欧美日韩在线观看一区二区| 成人精品一区二区三区中文字幕| 91免费版在线看| 欧美一级日韩免费不卡| 一区在线中文字幕| 日本强好片久久久久久aaa| av亚洲精华国产精华精| 欧美v国产在线一区二区三区| 亚洲摸摸操操av| 丁香天五香天堂综合| 日韩三级免费观看| 一区二区三区色| zzijzzij亚洲日本少妇熟睡| 日韩欧美你懂的| 日韩国产高清在线| 欧美在线免费播放| 欧美国产精品中文字幕| 久久福利视频一区二区| 欧美午夜理伦三级在线观看| 亚洲视频狠狠干| 成人动漫一区二区| 久久九九久精品国产免费直播| 久久精品国产免费| 欧美日韩精品一区二区三区蜜桃 | 成人av影视在线观看| 日韩一区二区三区四区五区六区| 性做久久久久久免费观看欧美| eeuss国产一区二区三区| 日韩一卡二卡三卡国产欧美| 亚洲国产裸拍裸体视频在线观看乱了| 92国产精品观看| 亚洲免费在线观看视频| 97se亚洲国产综合自在线不卡| 最新热久久免费视频| 91一区二区三区在线观看| 国产精品免费观看视频| 91在线一区二区| 亚洲精品中文在线影院| 欧美在线播放高清精品| 亚洲国产欧美另类丝袜| 69久久99精品久久久久婷婷| 另类小说一区二区三区| 日韩欧美色电影| 国产精品一区在线观看乱码| 国产精品免费视频观看| www.亚洲色图.com| 亚洲美女视频在线观看| 欧美午夜一区二区三区| gogogo免费视频观看亚洲一| 亚洲欧美中日韩| 在线观看中文字幕不卡| 日本成人在线看| 久久精品夜色噜噜亚洲a∨| 成人久久视频在线观看| 国产精品―色哟哟| 色综合久久88色综合天天免费| 一区二区免费视频| 制服丝袜成人动漫| 韩国女主播一区| 中文字幕在线不卡一区| 欧洲日韩一区二区三区| 日本一区中文字幕| 久久久99精品久久| 日本精品裸体写真集在线观看| 亚洲午夜在线视频| 欧美成人免费网站| 91网页版在线| 蜜桃精品视频在线观看| 国产精品美女久久久久aⅴ| 欧美性猛交一区二区三区精品| 韩国精品一区二区| 亚洲免费观看高清完整版在线观看 | 久久精品国产精品亚洲精品| 久久久精品日韩欧美| 欧美影院精品一区| 国产福利一区二区| 亚洲国产成人av好男人在线观看| 久久综合久久综合九色| 欧美视频日韩视频| 国产成人av一区二区| 五月婷婷久久综合| 国产精品麻豆网站| 日韩一区二区免费视频| 在线观看视频91| 国产传媒一区在线| 日日嗨av一区二区三区四区| 亚洲色欲色欲www| 久久影院午夜片一区| 97久久精品人人爽人人爽蜜臀| 免费在线视频一区| 亚洲欧美日韩国产综合在线| 久久综合九色综合97婷婷女人 | 亚洲女子a中天字幕| 欧美精品一区二区三区蜜桃| 欧美色综合天天久久综合精品| 大桥未久av一区二区三区中文| 青青草原综合久久大伊人精品优势| 一区二区三区精品视频| 国产精品毛片无遮挡高清| 欧美tickling挠脚心丨vk| 欧美三级三级三级| 99热99精品| 国产91丝袜在线播放0| 黄色日韩三级电影| 蜜臀av一区二区| 五月天欧美精品| av中文字幕在线不卡| 美女网站色91| 美女诱惑一区二区| 日韩成人一区二区| 日精品一区二区三区| 亚洲成人午夜电影| 亚洲国产成人精品视频| 亚洲一线二线三线视频| 亚洲精品高清在线观看| 综合色中文字幕| 亚洲欧美一区二区三区久本道91| 亚洲天堂成人在线观看| 亚洲国产高清在线观看视频| 国产欧美日韩不卡免费| 欧美激情一区二区三区不卡| 国产精品乱码一区二区三区软件 | 日韩国产精品久久| 欧美a一区二区| 激情小说亚洲一区| 精品一区二区三区不卡| 国产一区二区影院| 成人在线一区二区三区| 97久久精品人人爽人人爽蜜臀| 在线精品视频小说1| 欧美三级蜜桃2在线观看| 欧美美女喷水视频| 日韩欧美中文字幕精品| 精品少妇一区二区三区视频免付费| 91精品国产91久久久久久最新毛片| 欧美不卡一区二区三区| 久久久综合激的五月天| 亚洲婷婷在线视频| 亚洲综合一区二区| 日本欧美在线看| 高清shemale亚洲人妖| 色94色欧美sute亚洲13| 欧美一区二区久久久| 久久综合久久综合久久综合| 亚洲欧美日韩系列| 日韩电影在线观看电影| 国产成人自拍网| 色综合久久99| 精品欧美乱码久久久久久| 国产精品视频线看| 水野朝阳av一区二区三区| 国内不卡的二区三区中文字幕| 91香蕉视频污| 日韩你懂的在线播放| 亚洲欧洲日产国产综合网| 日本sm残虐另类| aaa欧美大片| 精品精品国产高清一毛片一天堂| 亚洲图片欧美激情| 青青草91视频| 91社区在线播放| 精品久久一区二区三区| 亚洲乱码国产乱码精品精98午夜 | 亚洲一区二区三区四区五区黄| 男人的j进女人的j一区| 色综合天天综合给合国产| 精品少妇一区二区三区在线播放| 亚洲精品成a人| 国产一区二区免费看| 欧美片在线播放| 亚洲人成网站精品片在线观看| 精品亚洲aⅴ乱码一区二区三区| 色欧美88888久久久久久影院| 精品国产免费久久| 午夜伊人狠狠久久| 色呦呦网站一区| 国产人成亚洲第一网站在线播放| 日韩成人免费电影| 国产午夜精品久久| 丝袜亚洲另类丝袜在线| 色菇凉天天综合网| 日本一区二区三区电影| 日本色综合中文字幕| 在线日韩av片| 亚洲丝袜美腿综合| 国产aⅴ综合色| 久久久www成人免费无遮挡大片| 日韩和的一区二区| 欧美在线观看视频一区二区三区| 一色桃子久久精品亚洲| 国产成人福利片| 欧美精品一区二区三区蜜桃| 极品少妇xxxx精品少妇| 91麻豆精品国产91久久久| 午夜伦欧美伦电影理论片| 成人av网址在线| 国产精品免费久久| 99在线精品视频| 亚洲免费资源在线播放|