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

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

?? jdphuff.c

?? 在ecos 下mingui 的移植開發
?? C
?? 第 1 頁 / 共 2 頁
字號:
#define JPEG_INTERNALS#include "jpeglib.h"#include "jdhuff.h"		/* Declarations shared with jdhuff.c */#ifdef D_PROGRESSIVE_SUPPORTED/* * Expanded entropy decoder object for progressive Huffman decoding. * * The savable_state subrecord contains fields that change within an MCU, * but must not be updated permanently until we complete the MCU. */typedef struct {  unsigned int EOBRUN;			/* remaining EOBs in EOBRUN */  int last_dc_val[MAX_COMPS_IN_SCAN];	/* last DC coef for each component */} savable_state;/* This macro is to work around compilers with missing or broken * structure assignment.  You'll need to fix this code if you have * such a compiler and you change MAX_COMPS_IN_SCAN. */#ifndef NO_STRUCT_ASSIGN#define ASSIGN_STATE(dest,src)  ((dest) = (src))#else#if MAX_COMPS_IN_SCAN == 4#define ASSIGN_STATE(dest,src)  \	((dest).EOBRUN = (src).EOBRUN, \	 (dest).last_dc_val[0] = (src).last_dc_val[0], \	 (dest).last_dc_val[1] = (src).last_dc_val[1], \	 (dest).last_dc_val[2] = (src).last_dc_val[2], \	 (dest).last_dc_val[3] = (src).last_dc_val[3])#endif#endiftypedef struct {  struct jpeg_entropy_decoder pub; /* public fields */  /* These fields are loaded into local variables at start of each MCU.   * In case of suspension, we exit WITHOUT updating them.   */  bitread_perm_state bitstate;	/* Bit buffer at start of MCU */  savable_state saved;		/* Other state at start of MCU */  /* These fields are NOT loaded into local working state. */  unsigned int restarts_to_go;	/* MCUs left in this restart interval */  /* Pointers to derived tables (these workspaces have image lifespan) */  d_derived_tbl * derived_tbls[NUM_HUFF_TBLS];  d_derived_tbl * ac_derived_tbl; /* active table during an AC scan */} phuff_entropy_decoder;typedef phuff_entropy_decoder * phuff_entropy_ptr;/* Forward declarations */METHODDEF(boolean) decode_mcu_DC_first JPP((j_decompress_ptr cinfo,					    JBLOCKROW *MCU_data));METHODDEF(boolean) decode_mcu_AC_first JPP((j_decompress_ptr cinfo,					    JBLOCKROW *MCU_data));METHODDEF(boolean) decode_mcu_DC_refine JPP((j_decompress_ptr cinfo,					     JBLOCKROW *MCU_data));METHODDEF(boolean) decode_mcu_AC_refine JPP((j_decompress_ptr cinfo,					     JBLOCKROW *MCU_data));/* * Initialize for a Huffman-compressed scan. */METHODDEF(void)start_pass_phuff_decoder (j_decompress_ptr cinfo){  phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy;  boolean is_DC_band, bad;  int ci, coefi, tbl;  int *coef_bit_ptr;  jpeg_component_info * compptr;  is_DC_band = (cinfo->Ss == 0);  /* Validate scan parameters */  bad = FALSE;  if (is_DC_band) {    if (cinfo->Se != 0)      bad = TRUE;  } else {    /* need not check Ss/Se < 0 since they came from unsigned bytes */    if (cinfo->Ss > cinfo->Se || cinfo->Se >= DCTSIZE2)      bad = TRUE;    /* AC scans may have only one component */    if (cinfo->comps_in_scan != 1)      bad = TRUE;  }  if (cinfo->Ah != 0) {    /* Successive approximation refinement scan: must have Al = Ah-1. */    if (cinfo->Al != cinfo->Ah-1)      bad = TRUE;  }  if (cinfo->Al > 13)		/* need not check for < 0 */    bad = TRUE;  if (bad)    ERREXIT4(cinfo, JERR_BAD_PROGRESSION,	     cinfo->Ss, cinfo->Se, cinfo->Ah, cinfo->Al);  /* Update progression status, and verify that scan order is legal.   * Note that inter-scan inconsistencies are treated as warnings   * not fatal errors ... not clear if this is right way to behave.   */  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {    int cindex = cinfo->cur_comp_info[ci]->component_index;    coef_bit_ptr = & cinfo->coef_bits[cindex][0];    if (!is_DC_band && coef_bit_ptr[0] < 0) /* AC without prior DC scan */      WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, 0);    for (coefi = cinfo->Ss; coefi <= cinfo->Se; coefi++) {      int expected = (coef_bit_ptr[coefi] < 0) ? 0 : coef_bit_ptr[coefi];      if (cinfo->Ah != expected)	WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, coefi);      coef_bit_ptr[coefi] = cinfo->Al;    }  }  /* Select MCU decoding routine */  if (cinfo->Ah == 0) {    if (is_DC_band)      entropy->pub.decode_mcu = decode_mcu_DC_first;    else      entropy->pub.decode_mcu = decode_mcu_AC_first;  } else {    if (is_DC_band)      entropy->pub.decode_mcu = decode_mcu_DC_refine;    else      entropy->pub.decode_mcu = decode_mcu_AC_refine;  }  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {    compptr = cinfo->cur_comp_info[ci];    /* Make sure requested tables are present, and compute derived tables.     * We may build same derived table more than once, but it's not expensive.     */    if (is_DC_band) {      if (cinfo->Ah == 0) {	/* DC refinement needs no table */	tbl = compptr->dc_tbl_no;	if (tbl < 0 || tbl >= NUM_HUFF_TBLS ||	    cinfo->dc_huff_tbl_ptrs[tbl] == NULL)	  ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tbl);	jpeg_make_d_derived_tbl(cinfo, cinfo->dc_huff_tbl_ptrs[tbl],				& entropy->derived_tbls[tbl]);      }    } else {      tbl = compptr->ac_tbl_no;      if (tbl < 0 || tbl >= NUM_HUFF_TBLS ||          cinfo->ac_huff_tbl_ptrs[tbl] == NULL)        ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tbl);      jpeg_make_d_derived_tbl(cinfo, cinfo->ac_huff_tbl_ptrs[tbl],			      & entropy->derived_tbls[tbl]);      /* remember the single active table */      entropy->ac_derived_tbl = entropy->derived_tbls[tbl];    }    /* Initialize DC predictions to 0 */    entropy->saved.last_dc_val[ci] = 0;  }  /* Initialize bitread state variables */  entropy->bitstate.bits_left = 0;  entropy->bitstate.get_buffer = 0; /* unnecessary, but keeps Purify quiet */  entropy->bitstate.printed_eod = FALSE;  /* Initialize private state variables */  entropy->saved.EOBRUN = 0;  /* Initialize restart counter */  entropy->restarts_to_go = cinfo->restart_interval;}/* * Figure F.12: extend sign bit. * On some machines, a shift and add will be faster than a table lookup. */#ifdef AVOID_TABLES#define HUFF_EXTEND(x,s)  ((x) < (1<<((s)-1)) ? (x) + (((-1)<<(s)) + 1) : (x))#else#define HUFF_EXTEND(x,s)  ((x) < extend_test[s] ? (x) + extend_offset[s] : (x))static const int extend_test[16] =   /* entry n is 2**(n-1) */  { 0, 0x0001, 0x0002, 0x0004, 0x0008, 0x0010, 0x0020, 0x0040, 0x0080,    0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000 };static const int extend_offset[16] = /* entry n is (-1 << n) + 1 */  { 0, ((-1)<<1) + 1, ((-1)<<2) + 1, ((-1)<<3) + 1, ((-1)<<4) + 1,    ((-1)<<5) + 1, ((-1)<<6) + 1, ((-1)<<7) + 1, ((-1)<<8) + 1,    ((-1)<<9) + 1, ((-1)<<10) + 1, ((-1)<<11) + 1, ((-1)<<12) + 1,    ((-1)<<13) + 1, ((-1)<<14) + 1, ((-1)<<15) + 1 };#endif /* AVOID_TABLES *//* * Check for a restart marker & resynchronize decoder. * Returns FALSE if must suspend. */LOCAL(boolean)process_restart (j_decompress_ptr cinfo){  phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy;  int ci;  /* Throw away any unused bits remaining in bit buffer; */  /* include any full bytes in next_marker's count of discarded bytes */  cinfo->marker->discarded_bytes += entropy->bitstate.bits_left / 8;  entropy->bitstate.bits_left = 0;  /* Advance past the RSTn marker */  if (! (*cinfo->marker->read_restart_marker) (cinfo))    return FALSE;  /* Re-initialize DC predictions to 0 */  for (ci = 0; ci < cinfo->comps_in_scan; ci++)    entropy->saved.last_dc_val[ci] = 0;  /* Re-init EOB run count, too */  entropy->saved.EOBRUN = 0;  /* Reset restart counter */  entropy->restarts_to_go = cinfo->restart_interval;  /* Next segment can get another out-of-data warning */  entropy->bitstate.printed_eod = FALSE;  return TRUE;}/* * Huffman MCU decoding. * Each of these routines decodes and returns one MCU's worth of * Huffman-compressed coefficients.  * The coefficients are reordered from zigzag order into natural array order, * but are not dequantized. * * The i'th block of the MCU is stored into the block pointed to by * MCU_data[i].  WE ASSUME THIS AREA IS INITIALLY ZEROED BY THE CALLER. * * We return FALSE if data source requested suspension.  In that case no * changes have been made to permanent state.  (Exception: some output * coefficients may already have been assigned.  This is harmless for * spectral selection, since we'll just re-assign them on the next call. * Successive approximation AC refinement has to be more careful, however.) *//* * MCU decoding for DC initial scan (either spectral selection, * or first pass of successive approximation). */METHODDEF(boolean)decode_mcu_DC_first (j_decompress_ptr cinfo, JBLOCKROW *MCU_data){     phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy;  int Al = cinfo->Al;  register int s, r;  int blkn, ci;  JBLOCKROW block;  BITREAD_STATE_VARS;  savable_state state;  d_derived_tbl * tbl;  jpeg_component_info * compptr;  /* Process restart marker if needed; may have to suspend */  if (cinfo->restart_interval) {    if (entropy->restarts_to_go == 0)      if (! process_restart(cinfo))	return FALSE;  }  /* Load up working state */  BITREAD_LOAD_STATE(cinfo,entropy->bitstate);  ASSIGN_STATE(state, entropy->saved);  /* Outer loop handles each block in the MCU */  for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {    block = MCU_data[blkn];    ci = cinfo->MCU_membership[blkn];    compptr = cinfo->cur_comp_info[ci];    tbl = entropy->derived_tbls[compptr->dc_tbl_no];    /* Decode a single block's worth of coefficients */    /* Section F.2.2.1: decode the DC coefficient difference */    HUFF_DECODE(s, br_state, tbl, return FALSE, label1);    if (s) {      CHECK_BIT_BUFFER(br_state, s, return FALSE);      r = GET_BITS(s);      s = HUFF_EXTEND(r, s);    }    /* Convert DC difference to actual value, update last_dc_val */    s += state.last_dc_val[ci];    state.last_dc_val[ci] = s;    /* Scale and output the DC coefficient (assumes jpeg_natural_order[0]=0) */    (*block)[0] = (JCOEF) (s << Al);  }  /* Completed MCU, so update state */  BITREAD_SAVE_STATE(cinfo,entropy->bitstate);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品播放一区二区| 国产在线乱码一区二区三区| 久久综合综合久久综合| 99免费精品视频| 日韩欧美国产三级电影视频| 亚洲精品国产视频| 国产91高潮流白浆在线麻豆 | 91在线精品一区二区| 欧美岛国在线观看| 天堂蜜桃91精品| 91福利视频网站| 国产精品久久久久一区| 麻豆91在线播放免费| 在线电影院国产精品| 一二三区精品福利视频| 波多野结衣的一区二区三区| 久久精品人人做人人爽97| 日本v片在线高清不卡在线观看| 在线亚洲免费视频| 亚洲免费观看视频| 91久久精品一区二区二区| 综合欧美亚洲日本| 成人sese在线| 综合亚洲深深色噜噜狠狠网站| 丁香婷婷深情五月亚洲| 欧美国产1区2区| 不卡一区在线观看| 欧美国产日产图区| 99免费精品在线观看| 综合分类小说区另类春色亚洲小说欧美| 国产精品66部| 国产网站一区二区| 高清shemale亚洲人妖| 久久久国产精品麻豆| 国产91清纯白嫩初高中在线观看 | 91亚洲精华国产精华精华液| 国产午夜精品久久久久久久| 免费观看在线综合色| 欧美不卡一区二区三区四区| 洋洋成人永久网站入口| 丰满岳乱妇一区二区三区| 在线视频一区二区三区| 国产精品美女视频| 91麻豆免费视频| 午夜影视日本亚洲欧洲精品| 色综合天天综合狠狠| 亚洲欧美另类久久久精品2019| 国产精品亚洲第一| 在线91免费看| 国产精品色哟哟| 欧美日韩一二区| 三级在线观看一区二区| 97久久人人超碰| 亚洲综合视频网| 91精品国产91久久久久久最新毛片| 亚洲二区视频在线| 欧美日韩一区在线观看| 天天影视网天天综合色在线播放| 一区二区在线看| 国产91丝袜在线18| 欧美变态凌虐bdsm| 成人精品一区二区三区中文字幕 | 国产美女久久久久| 中文字幕一区二区三区四区不卡| 91成人国产精品| 国产精品中文字幕一区二区三区| 国产精品福利影院| 欧美日韩国产综合一区二区 | 国产午夜精品一区二区三区嫩草| 不卡一区二区在线| 午夜精品久久久久久| 欧美精品一区二区三区蜜桃| 一本色道久久加勒比精品 | 一区二区三区影院| 欧美一区二区三区男人的天堂| 国产一区二区三区在线观看免费 | |精品福利一区二区三区| 欧美日韩免费一区二区三区 | 在线观看视频一区二区 | 日本一区二区久久| 制服丝袜av成人在线看| 91麻豆免费在线观看| 久久99热狠狠色一区二区| 曰韩精品一区二区| 国产欧美一区二区精品秋霞影院 | 亚洲精品在线电影| 欧美在线小视频| 成人免费视频一区二区| 精品一区二区三区久久| 亚洲国产一区二区三区青草影视| 国产午夜精品福利| 精品免费一区二区三区| 91精品福利视频| 成人晚上爱看视频| 国模大尺度一区二区三区| 午夜久久久影院| 夜色激情一区二区| 亚洲老司机在线| 国产精品久久久久久亚洲伦| 国产亚洲成aⅴ人片在线观看| 日韩欧美综合在线| 欧美日韩国产乱码电影| 精品视频在线视频| 欧美性感一类影片在线播放| 一本色道久久加勒比精品| 99国产精品久久久久久久久久 | 欧美一区二区三区在| 91久久人澡人人添人人爽欧美| www.99精品| 成人午夜伦理影院| 成人黄页毛片网站| 9i在线看片成人免费| 国产99久久久国产精品免费看| 97精品电影院| 成人黄色大片在线观看| 风间由美一区二区三区在线观看| 国产一二精品视频| 国产精品亚洲成人| 成人app下载| 972aa.com艺术欧美| 91在线视频官网| 欧美在线色视频| 精品污污网站免费看| 欧美精品在线观看一区二区| 91精品午夜视频| 欧美不卡视频一区| 国产色产综合产在线视频| 日本一区二区免费在线观看视频 | 蜜臀av性久久久久蜜臀aⅴ四虎 | 亚洲成人资源在线| 日日夜夜精品视频免费| 免费美女久久99| 国产一区二区按摩在线观看| 成人国产精品免费观看| 91国产精品成人| 欧美精品aⅴ在线视频| 欧美α欧美αv大片| 亚洲国产精品高清| 一区二区三区久久| 免费欧美在线视频| 国产成人精品一区二区三区网站观看| 成人av动漫网站| 欧美精品久久久久久久久老牛影院| 欧美电影免费观看高清完整版在线 | 中文字幕亚洲欧美在线不卡| 亚洲一级不卡视频| 国产原创一区二区| 91蝌蚪porny九色| 日韩美女视频在线| 中文字幕永久在线不卡| 日韩成人精品在线| 波多野结衣精品在线| 欧美精品九九99久久| 亚洲国产激情av| 美女脱光内衣内裤视频久久影院| 成人小视频在线| 欧美一卡二卡三卡四卡| 亚洲日本中文字幕区| 精品午夜一区二区三区在线观看| 9久草视频在线视频精品| 日韩精品综合一本久道在线视频| 亚洲免费观看高清完整版在线| 男人的j进女人的j一区| 91免费视频网址| 精品少妇一区二区三区视频免付费 | www.久久精品| 日韩精品一区二区三区视频播放| 亚洲精品欧美综合四区| 九九视频精品免费| 欧美日韩午夜影院| 亚洲欧美一区二区三区国产精品 | 欧美激情资源网| 日韩中文字幕麻豆| 日本高清无吗v一区| 国产精品日产欧美久久久久| 精品一区二区三区久久| 欧美一区二区三区日韩| 亚洲成av人影院| 欧美怡红院视频| 亚洲免费观看高清完整版在线观看 | 午夜影院在线观看欧美| 一本久久综合亚洲鲁鲁五月天| 国产亚洲精品aa| 国产一区二区91| 亚洲精品一区二区三区四区高清 | 日韩精品专区在线| 亚洲成人免费看| 在线亚洲+欧美+日本专区| 亚洲人成网站影音先锋播放| 国产99久久久久久免费看农村| 日韩视频国产视频| 男女视频一区二区| 日韩午夜激情av| 蜜臀av亚洲一区中文字幕| 91麻豆精品国产91久久久久久久久 | 日本精品一区二区三区高清| 国产精品拍天天在线| 成人av第一页| 亚洲欧洲在线观看av| av网站免费线看精品|