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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? jdphuff.c

?? 支持各種柵格圖像和矢量圖像讀取的庫
?? C
?? 第 1 頁 / 共 2 頁
字號:
      (*block)[0] = (JCOEF) (s << Al);    }    /* Completed MCU, so update state */    BITREAD_SAVE_STATE(cinfo,entropy->bitstate);    ASSIGN_STATE(entropy->saved, state);  }  /* Account for restart interval (no-op if not using restarts) */  entropy->restarts_to_go--;  return TRUE;}/* * MCU decoding for AC initial scan (either spectral selection, * or first pass of successive approximation). */METHODDEF(boolean)decode_mcu_AC_first (j_decompress_ptr cinfo, JBLOCKROW *MCU_data){     phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy;  int Se = cinfo->Se;  int Al = cinfo->Al;  register int s, k, r;  unsigned int EOBRUN;  JBLOCKROW block;  BITREAD_STATE_VARS;  d_derived_tbl * tbl;  /* 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;  }  /* If we've run out of data, just leave the MCU set to zeroes.   * This way, we return uniform gray for the remainder of the segment.   */  if (! entropy->pub.insufficient_data) {    /* Load up working state.     * We can avoid loading/saving bitread state if in an EOB run.     */    EOBRUN = entropy->saved.EOBRUN;	/* only part of saved state we need */    /* There is always only one block per MCU */    if (EOBRUN > 0)		/* if it's a band of zeroes... */      EOBRUN--;			/* ...process it now (we do nothing) */    else {      BITREAD_LOAD_STATE(cinfo,entropy->bitstate);      block = MCU_data[0];      tbl = entropy->ac_derived_tbl;      for (k = cinfo->Ss; k <= Se; k++) {	HUFF_DECODE(s, br_state, tbl, return FALSE, label2);	r = s >> 4;	s &= 15;	if (s) {	  k += r;	  CHECK_BIT_BUFFER(br_state, s, return FALSE);	  r = GET_BITS(s);	  s = HUFF_EXTEND(r, s);	  /* Scale and output coefficient in natural (dezigzagged) order */	  (*block)[jpeg_natural_order[k]] = (JCOEF) (s << Al);	} else {	  if (r == 15) {	/* ZRL */	    k += 15;		/* skip 15 zeroes in band */	  } else {		/* EOBr, run length is 2^r + appended bits */	    EOBRUN = 1 << r;	    if (r) {		/* EOBr, r > 0 */	      CHECK_BIT_BUFFER(br_state, r, return FALSE);	      r = GET_BITS(r);	      EOBRUN += r;	    }	    EOBRUN--;		/* this band is processed at this moment */	    break;		/* force end-of-band */	  }	}      }      BITREAD_SAVE_STATE(cinfo,entropy->bitstate);    }    /* Completed MCU, so update state */    entropy->saved.EOBRUN = EOBRUN;	/* only part of saved state we need */  }  /* Account for restart interval (no-op if not using restarts) */  entropy->restarts_to_go--;  return TRUE;}/* * MCU decoding for DC successive approximation refinement scan. * Note: we assume such scans can be multi-component, although the spec * is not very clear on the point. */METHODDEF(boolean)decode_mcu_DC_refine (j_decompress_ptr cinfo, JBLOCKROW *MCU_data){     phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy;  int p1 = 1 << cinfo->Al;	/* 1 in the bit position being coded */  int blkn;  JBLOCKROW block;  BITREAD_STATE_VARS;  /* 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;  }  /* Not worth the cycles to check insufficient_data here,   * since we will not change the data anyway if we read zeroes.   */  /* Load up working state */  BITREAD_LOAD_STATE(cinfo,entropy->bitstate);  /* Outer loop handles each block in the MCU */  for (blkn = 0; blkn < cinfo->blocks_in_MCU; blkn++) {    block = MCU_data[blkn];    /* Encoded data is simply the next bit of the two's-complement DC value */    CHECK_BIT_BUFFER(br_state, 1, return FALSE);    if (GET_BITS(1))      (*block)[0] |= p1;    /* Note: since we use |=, repeating the assignment later is safe */  }  /* Completed MCU, so update state */  BITREAD_SAVE_STATE(cinfo,entropy->bitstate);  /* Account for restart interval (no-op if not using restarts) */  entropy->restarts_to_go--;  return TRUE;}/* * MCU decoding for AC successive approximation refinement scan. */METHODDEF(boolean)decode_mcu_AC_refine (j_decompress_ptr cinfo, JBLOCKROW *MCU_data){     phuff_entropy_ptr entropy = (phuff_entropy_ptr) cinfo->entropy;  int Se = cinfo->Se;  int p1 = 1 << cinfo->Al;	/* 1 in the bit position being coded */  int m1 = (-1) << cinfo->Al;	/* -1 in the bit position being coded */  register int s, k, r;  unsigned int EOBRUN;  JBLOCKROW block;  JCOEFPTR thiscoef;  BITREAD_STATE_VARS;  d_derived_tbl * tbl;  int num_newnz;  int newnz_pos[DCTSIZE2];  /* 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;  }  /* If we've run out of data, don't modify the MCU.   */  if (! entropy->pub.insufficient_data) {    /* Load up working state */    BITREAD_LOAD_STATE(cinfo,entropy->bitstate);    EOBRUN = entropy->saved.EOBRUN; /* only part of saved state we need */    /* There is always only one block per MCU */    block = MCU_data[0];    tbl = entropy->ac_derived_tbl;    /* If we are forced to suspend, we must undo the assignments to any newly     * nonzero coefficients in the block, because otherwise we'd get confused     * next time about which coefficients were already nonzero.     * But we need not undo addition of bits to already-nonzero coefficients;     * instead, we can test the current bit to see if we already did it.     */    num_newnz = 0;    /* initialize coefficient loop counter to start of band */    k = cinfo->Ss;    if (EOBRUN == 0) {      for (; k <= Se; k++) {	HUFF_DECODE(s, br_state, tbl, goto undoit, label3);	r = s >> 4;	s &= 15;	if (s) {	  if (s != 1)		/* size of new coef should always be 1 */	    WARNMS(cinfo, JWRN_HUFF_BAD_CODE);	  CHECK_BIT_BUFFER(br_state, 1, goto undoit);	  if (GET_BITS(1))	    s = p1;		/* newly nonzero coef is positive */	  else	    s = m1;		/* newly nonzero coef is negative */	} else {	  if (r != 15) {	    EOBRUN = 1 << r;	/* EOBr, run length is 2^r + appended bits */	    if (r) {	      CHECK_BIT_BUFFER(br_state, r, goto undoit);	      r = GET_BITS(r);	      EOBRUN += r;	    }	    break;		/* rest of block is handled by EOB logic */	  }	  /* note s = 0 for processing ZRL */	}	/* Advance over already-nonzero coefs and r still-zero coefs,	 * appending correction bits to the nonzeroes.  A correction bit is 1	 * if the absolute value of the coefficient must be increased.	 */	do {	  thiscoef = *block + jpeg_natural_order[k];	  if (*thiscoef != 0) {	    CHECK_BIT_BUFFER(br_state, 1, goto undoit);	    if (GET_BITS(1)) {	      if ((*thiscoef & p1) == 0) { /* do nothing if already set it */		if (*thiscoef >= 0)		  *thiscoef += p1;		else		  *thiscoef += m1;	      }	    }	  } else {	    if (--r < 0)	      break;		/* reached target zero coefficient */	  }	  k++;	} while (k <= Se);	if (s) {	  int pos = jpeg_natural_order[k];	  /* Output newly nonzero coefficient */	  (*block)[pos] = (JCOEF) s;	  /* Remember its position in case we have to suspend */	  newnz_pos[num_newnz++] = pos;	}      }    }    if (EOBRUN > 0) {      /* Scan any remaining coefficient positions after the end-of-band       * (the last newly nonzero coefficient, if any).  Append a correction       * bit to each already-nonzero coefficient.  A correction bit is 1       * if the absolute value of the coefficient must be increased.       */      for (; k <= Se; k++) {	thiscoef = *block + jpeg_natural_order[k];	if (*thiscoef != 0) {	  CHECK_BIT_BUFFER(br_state, 1, goto undoit);	  if (GET_BITS(1)) {	    if ((*thiscoef & p1) == 0) { /* do nothing if already changed it */	      if (*thiscoef >= 0)		*thiscoef += p1;	      else		*thiscoef += m1;	    }	  }	}      }      /* Count one block completed in EOB run */      EOBRUN--;    }    /* Completed MCU, so update state */    BITREAD_SAVE_STATE(cinfo,entropy->bitstate);    entropy->saved.EOBRUN = EOBRUN; /* only part of saved state we need */  }  /* Account for restart interval (no-op if not using restarts) */  entropy->restarts_to_go--;  return TRUE;undoit:  /* Re-zero any output coefficients that we made newly nonzero */  while (num_newnz > 0)    (*block)[newnz_pos[--num_newnz]] = 0;  return FALSE;}/* * Module initialization routine for progressive Huffman entropy decoding. */GLOBAL(void)jinit_phuff_decoder (j_decompress_ptr cinfo){  phuff_entropy_ptr entropy;  int *coef_bit_ptr;  int ci, i;  entropy = (phuff_entropy_ptr)    (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,				SIZEOF(phuff_entropy_decoder));  cinfo->entropy = (struct jpeg_entropy_decoder *) entropy;  entropy->pub.start_pass = start_pass_phuff_decoder;  /* Mark derived tables unallocated */  for (i = 0; i < NUM_HUFF_TBLS; i++) {    entropy->derived_tbls[i] = NULL;  }  /* Create progression status table */  cinfo->coef_bits = (int (*)[DCTSIZE2])    (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,				cinfo->num_components*DCTSIZE2*SIZEOF(int));  coef_bit_ptr = & cinfo->coef_bits[0][0];  for (ci = 0; ci < cinfo->num_components; ci++)     for (i = 0; i < DCTSIZE2; i++)      *coef_bit_ptr++ = -1;}#endif /* D_PROGRESSIVE_SUPPORTED */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久精品欧美丰满| 欧洲av在线精品| 国产欧美一区二区三区在线看蜜臀 | 亚洲男人的天堂网| 成人av网站免费| 亚洲制服欧美中文字幕中文字幕| 91在线视频播放| 亚洲一区二区三区四区五区黄| 色狠狠色狠狠综合| 首页亚洲欧美制服丝腿| 欧美一区二区福利在线| 国产一区二区三区高清播放| 精品第一国产综合精品aⅴ| 韩国欧美国产1区| 中文字幕在线观看不卡| 91豆麻精品91久久久久久| 午夜视频在线观看一区二区三区| 制服丝袜中文字幕一区| 国产中文字幕精品| ...av二区三区久久精品| 欧美日韩一二区| 日产国产欧美视频一区精品| 精品女同一区二区| 99re这里都是精品| 日日嗨av一区二区三区四区| 久久蜜桃av一区二区天堂| 国产福利91精品| 亚洲欧美综合另类在线卡通| 欧美浪妇xxxx高跟鞋交| 国产精品2024| 婷婷国产v国产偷v亚洲高清| 国产亚洲婷婷免费| 欧美午夜电影一区| 成人激情免费视频| 另类小说色综合网站| 亚洲欧洲制服丝袜| 国产日产欧美一区二区视频| gogogo免费视频观看亚洲一| 午夜一区二区三区在线观看| 久久久国产精品不卡| 91视频www| 高清在线不卡av| 国模冰冰炮一区二区| 日韩一区精品视频| 亚洲综合色成人| 亚洲欧洲精品一区二区精品久久久 | 亚洲美女视频在线观看| 中文字幕精品—区二区四季| 精品乱码亚洲一区二区不卡| 欧美人狂配大交3d怪物一区| 精品视频在线看| 色菇凉天天综合网| 91免费国产在线观看| av一区二区三区黑人| 国产高清精品网站| 另类小说一区二区三区| 日本色综合中文字幕| 偷拍一区二区三区四区| 午夜不卡av免费| 青青草精品视频| 亚洲国产精品久久人人爱蜜臀| 国产精品第一页第二页第三页| 中文字幕精品—区二区四季| 国产精品午夜电影| 亚洲欧洲日韩在线| 一区二区三区美女视频| 婷婷丁香激情综合| 九色综合狠狠综合久久| 美女视频黄a大片欧美| 国产iv一区二区三区| 欧美亚洲国产一区二区三区va| 日韩午夜电影在线观看| 中文字幕第一区二区| 午夜视频一区在线观看| 精品一区二区三区在线播放| 99久精品国产| 精品久久久久久综合日本欧美| 国产精品久久久久久久岛一牛影视| 午夜精品视频在线观看| 国产麻豆成人精品| 欧美亚洲国产bt| 国产欧美精品一区二区色综合朱莉| 一区二区在线观看免费视频播放| 美女mm1313爽爽久久久蜜臀| 色欲综合视频天天天| 久久日韩粉嫩一区二区三区| 亚洲国产婷婷综合在线精品| 成人一级黄色片| 久久综合网色—综合色88| 亚洲成在人线免费| 白白色 亚洲乱淫| 国产亲近乱来精品视频| 国产精品99久久久久久久女警| 欧美日韩精品免费观看视频| 国产精品丝袜在线| 国产高清亚洲一区| 2017欧美狠狠色| 麻豆久久一区二区| 日韩三级在线观看| 天堂影院一区二区| 欧美熟乱第一页| 亚洲一区中文日韩| 欧美亚洲一区三区| 亚洲美女少妇撒尿| 色偷偷88欧美精品久久久| 国产精品电影一区二区| eeuss鲁片一区二区三区| 久久午夜国产精品| 国产福利91精品一区| 国产亚洲欧洲997久久综合| 国产成人在线观看| 亚洲国产成人在线| 成年人网站91| 亚洲国产一区二区三区青草影视| 欧美三级蜜桃2在线观看| 天天综合日日夜夜精品| 日韩天堂在线观看| 国产福利精品导航| 综合网在线视频| 欧美日韩午夜影院| 久久精品国产**网站演员| 久久久久久久免费视频了| 成人av手机在线观看| 亚洲免费观看视频| 欧美精品日韩一区| 黄色日韩网站视频| 亚洲欧美自拍偷拍色图| 欧美午夜电影网| 国产在线一区二区| 国产精品久线在线观看| 精品视频一区二区三区免费| 精油按摩中文字幕久久| 国产精品色哟哟| 欧美高清视频一二三区| 国产精品一卡二卡在线观看| 亚洲日本成人在线观看| 欧美一区二区三区系列电影| 成人美女视频在线观看18| 亚洲.国产.中文慕字在线| 日本一区二区视频在线| 欧美日本在线看| 成人激情小说网站| 国产精品一级在线| 日本成人在线电影网| 亚洲欧洲av色图| 国产婷婷色一区二区三区四区 | 欧美视频三区在线播放| 国产精品一区二区三区乱码| 午夜久久久影院| 亚洲欧美另类在线| 国产欧美日韩视频一区二区| 欧美一区午夜视频在线观看 | 麻豆精品国产91久久久久久| 夜夜精品视频一区二区| 国产精品久久久99| 2020国产精品久久精品美国| 欧美精品第1页| 欧美视频日韩视频在线观看| www.欧美日韩| 成人国产电影网| 国产suv精品一区二区6| 国产乱一区二区| 极品少妇xxxx精品少妇| 日本成人中文字幕| 石原莉奈在线亚洲三区| 五月天视频一区| 日本va欧美va欧美va精品| 亚洲成a天堂v人片| 亚洲va国产天堂va久久en| 亚洲最新视频在线播放| 亚洲男人的天堂在线观看| 一区二区三区av电影| 亚洲国产乱码最新视频| 亚洲第一激情av| 亚洲成人黄色影院| 日本91福利区| 精品亚洲成a人| 久久99蜜桃精品| 成人看片黄a免费看在线| 成人av综合一区| 欧美这里有精品| 欧美一区二区三区思思人| 日韩精品一区二区在线观看| 久久亚洲精品小早川怜子| 亚洲国产精品99久久久久久久久| 日韩久久一区二区| 丝袜美腿亚洲综合| 国产麻豆精品久久一二三| av在线不卡观看免费观看| 精品国产123| 国产欧美一区二区三区沐欲 | 欧美日韩在线播放| 欧美成人a在线| 中文字幕永久在线不卡| 亚洲国产一区二区视频| 国产一区二区日韩精品| 92精品国产成人观看免费| 欧美一区二区三区免费在线看| 久久在线免费观看| 亚洲最大色网站|