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

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

?? jdhuff.c

?? WinCE開發(fā)技巧與實例的配套源碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
	do {
	  if (bytes_in_buffer == 0) {
	    if (! (*cinfo->src->fill_input_buffer) (cinfo))
	      return FALSE;
	    next_input_byte = cinfo->src->next_input_byte;
	    bytes_in_buffer = cinfo->src->bytes_in_buffer;
	  }
	  bytes_in_buffer--;
	  c = GETJOCTET(*next_input_byte++);
	} while (c == 0xFF);

	if (c == 0) {
	  /* Found FF/00, which represents an FF data byte */
	  c = 0xFF;
	} else {
	  /* Oops, it's actually a marker indicating end of compressed data.
	   * Save the marker code for later use.
	   * Fine point: it might appear that we should save the marker into
	   * bitread working state, not straight into permanent state.  But
	   * once we have hit a marker, we cannot need to suspend within the
	   * current MCU, because we will read no more bytes from the data
	   * source.  So it is OK to update permanent state right away.
	   */
	  cinfo->unread_marker = c;
	  /* See if we need to insert some fake zero bits. */
	  goto no_more_bytes;
	}
      }

      /* OK, load c into get_buffer */
      get_buffer = (get_buffer << 8) | c;
      bits_left += 8;
    } /* end while */
  } else {
  no_more_bytes:
    /* We get here if we've read the marker that terminates the compressed
     * data segment.  There should be enough bits in the buffer register
     * to satisfy the request; if so, no problem.
     */
    if (nbits > bits_left) {
      /* Uh-oh.  Report corrupted data to user and stuff zeroes into
       * the data stream, so that we can produce some kind of image.
       * We use a nonvolatile flag to ensure that only one warning message
       * appears per data segment.
       */
      if (! cinfo->entropy->insufficient_data) {
	WARNMS(cinfo, JWRN_HIT_MARKER);
	cinfo->entropy->insufficient_data = TRUE;
      }
      /* Fill the buffer with zero bits */
      get_buffer <<= MIN_GET_BITS - bits_left;
      bits_left = MIN_GET_BITS;
    }
  }

  /* Unload the local registers */
  state->next_input_byte = next_input_byte;
  state->bytes_in_buffer = bytes_in_buffer;
  state->get_buffer = get_buffer;
  state->bits_left = bits_left;

  return TRUE;
}


/*
 * Out-of-line code for Huffman code decoding.
 * See jdhuff.h for info about usage.
 */

GLOBAL(int)
jpeg_huff_decode (bitread_working_state * state,
		  register bit_buf_type get_buffer, register int bits_left,
		  d_derived_tbl * htbl, int min_bits)
{
  register int l = min_bits;
  register INT32 code;

  /* HUFF_DECODE has determined that the code is at least min_bits */
  /* bits long, so fetch that many bits in one swoop. */

  CHECK_BIT_BUFFER(*state, l, return -1);
  code = GET_BITS(l);

  /* Collect the rest of the Huffman code one bit at a time. */
  /* This is per Figure F.16 in the JPEG spec. */

  while (code > htbl->maxcode[l]) {
    code <<= 1;
    CHECK_BIT_BUFFER(*state, 1, return -1);
    code |= GET_BITS(1);
    l++;
  }

  /* Unload the local registers */
  state->get_buffer = get_buffer;
  state->bits_left = bits_left;

  /* With garbage input we may reach the sentinel value l = 17. */

  if (l > 16) {
    WARNMS(state->cinfo, JWRN_HUFF_BAD_CODE);
    return 0;			/* fake a zero as the safest result */
  }

  return htbl->pub->huffval[ (int) (code + htbl->valoffset[l]) ];
}


/*
 * 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)
{
  huff_entropy_ptr entropy = (huff_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;

  /* Reset restart counter */
  entropy->restarts_to_go = cinfo->restart_interval;

  /* Reset out-of-data flag, unless read_restart_marker left us smack up
   * against a marker.  In that case we will end up treating the next data
   * segment as empty, and we can avoid producing bogus output pixels by
   * leaving the flag set.
   */
  if (cinfo->unread_marker == 0)
    entropy->pub.insufficient_data = FALSE;

  return TRUE;
}


/*
 * Decode and return 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 HAS BEEN ZEROED BY THE CALLER.
 * (Wholesale zeroing is usually a little faster than retail...)
 *
 * Returns 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
 * this module, since we'll just re-assign them on the next call.)
 */

METHODDEF(boolean)
decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data)
{
  huff_entropy_ptr entropy = (huff_entropy_ptr) cinfo->entropy;
  int blkn;
  BITREAD_STATE_VARS;
  savable_state state;

  /* 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 */
    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++) {
      JBLOCKROW block = MCU_data[blkn];
      d_derived_tbl * dctbl = entropy->dc_cur_tbls[blkn];
      d_derived_tbl * actbl = entropy->ac_cur_tbls[blkn];
      register int s, k, r;

      /* Decode a single block's worth of coefficients */

      /* Section F.2.2.1: decode the DC coefficient difference */
      HUFF_DECODE(s, br_state, dctbl, return FALSE, label1);
      if (s) {
	CHECK_BIT_BUFFER(br_state, s, return FALSE);
	r = GET_BITS(s);
	s = HUFF_EXTEND(r, s);
      }

      if (entropy->dc_needed[blkn]) {
	/* Convert DC difference to actual value, update last_dc_val */
	int ci = cinfo->MCU_membership[blkn];
	s += state.last_dc_val[ci];
	state.last_dc_val[ci] = s;
	/* Output the DC coefficient (assumes jpeg_natural_order[0] = 0) */
	(*block)[0] = (JCOEF) s;
      }

      if (entropy->ac_needed[blkn]) {

	/* Section F.2.2.2: decode the AC coefficients */
	/* Since zeroes are skipped, output area must be cleared beforehand */
	for (k = 1; k < DCTSIZE2; k++) {
	  HUFF_DECODE(s, br_state, actbl, 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);
	    /* Output coefficient in natural (dezigzagged) order.
	     * Note: the extra entries in jpeg_natural_order[] will save us
	     * if k >= DCTSIZE2, which could happen if the data is corrupted.
	     */
	    (*block)[jpeg_natural_order[k]] = (JCOEF) s;
	  } else {
	    if (r != 15)
	      break;
	    k += 15;
	  }
	}

      } else {

	/* Section F.2.2.2: decode the AC coefficients */
	/* In this path we just discard the values */
	for (k = 1; k < DCTSIZE2; k++) {
	  HUFF_DECODE(s, br_state, actbl, return FALSE, label3);
      
	  r = s >> 4;
	  s &= 15;
      
	  if (s) {
	    k += r;
	    CHECK_BIT_BUFFER(br_state, s, return FALSE);
	    DROP_BITS(s);
	  } else {
	    if (r != 15)
	      break;
	    k += 15;
	  }
	}

      }
    }

    /* 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;
}


/*
 * Module initialization routine for Huffman entropy decoding.
 */

GLOBAL(void)
jinit_huff_decoder (j_decompress_ptr cinfo)
{
  huff_entropy_ptr entropy;
  int i;

  entropy = (huff_entropy_ptr)
    (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
				SIZEOF(huff_entropy_decoder));
  cinfo->entropy = (struct jpeg_entropy_decoder *) entropy;
  entropy->pub.start_pass = start_pass_huff_decoder;
  entropy->pub.decode_mcu = decode_mcu;

  /* Mark tables unallocated */
  for (i = 0; i < NUM_HUFF_TBLS; i++) {
    entropy->dc_derived_tbls[i] = entropy->ac_derived_tbls[i] = NULL;
  }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国模无码大尺度一区二区三区| 亚洲图片自拍偷拍| 欧美一区二区二区| 欧美老肥妇做.爰bbww视频| 东方欧美亚洲色图在线| 国产一二精品视频| 国产激情一区二区三区| 国产99久久久精品| 不卡的av电影在线观看| 色综合久久99| 欧美日韩一区二区在线观看| 制服丝袜中文字幕一区| 欧美一级一区二区| 久久一留热品黄| 欧美国产激情一区二区三区蜜月| 国产精品蜜臀在线观看| 亚洲另类色综合网站| 亚洲制服欧美中文字幕中文字幕| 亚洲国产精品尤物yw在线观看| 亚洲成精国产精品女| 蜜臀av性久久久久蜜臀aⅴ流畅| 美女国产一区二区| 国产91在线观看丝袜| 91天堂素人约啪| 欧美人动与zoxxxx乱| 日韩欧美资源站| 欧美激情一区二区三区在线| 亚洲欧美日韩久久精品| 天堂av在线一区| 国模套图日韩精品一区二区| 99r国产精品| 日韩欧美另类在线| 成人免费在线视频| 青青草国产成人99久久| 国产一区二区不卡在线| 在线视频国产一区| 久久久久久综合| 亚洲成人免费电影| 成人免费视频免费观看| 欧美日韩在线播放三区| 久久久久久夜精品精品免费| 亚洲黄色小说网站| 91亚洲国产成人精品一区二区三 | 尤物视频一区二区| 久久国产剧场电影| 在线视频你懂得一区| 国产午夜亚洲精品午夜鲁丝片| 亚洲精品水蜜桃| 国产精品2024| 日韩免费视频一区| 亚洲高清三级视频| 不卡电影免费在线播放一区| 日韩欧美自拍偷拍| 亚洲国产裸拍裸体视频在线观看乱了| 久久66热re国产| 制服丝袜日韩国产| 一卡二卡欧美日韩| 暴力调教一区二区三区| 2021久久国产精品不只是精品| 一区二区三区91| 99麻豆久久久国产精品免费优播| 日韩精品一区二区三区三区免费 | 五月天视频一区| 91视频免费播放| 国产精品高潮呻吟久久| 国产在线精品免费| 日韩欧美国产精品一区| 麻豆视频一区二区| 91精品国产全国免费观看| 亚洲成人在线免费| 精品视频一区二区不卡| 一区二区三区中文字幕| 色综合天天综合狠狠| 亚洲色图一区二区三区| 91在线观看视频| 国产视频911| 成人开心网精品视频| 欧美激情在线看| 成人av在线一区二区| 日本一区二区视频在线观看| 国产69精品久久777的优势| 久久久精品国产99久久精品芒果| 国产精品综合一区二区三区| 国产午夜精品一区二区三区视频 | 欧美一级二级三级蜜桃| 日韩精品1区2区3区| 56国语精品自产拍在线观看| 性欧美疯狂xxxxbbbb| 欧美日韩精品一区二区三区| 五月天丁香久久| 欧美刺激脚交jootjob| 九色综合国产一区二区三区| 亚洲精品在线三区| 粉嫩绯色av一区二区在线观看 | 亚洲国产高清不卡| aaa亚洲精品| 亚洲高清三级视频| 日韩欧美视频在线| 成人免费黄色大片| 亚洲地区一二三色| 日韩一级免费观看| 久国产精品韩国三级视频| 26uuu精品一区二区在线观看| 国内精品久久久久影院色| 日本一区二区三区视频视频| 99久久精品费精品国产一区二区| 亚洲图片欧美综合| 久久久天堂av| 欧美熟乱第一页| 韩国午夜理伦三级不卡影院| 亚洲欧美另类久久久精品2019| 在线电影国产精品| 国产a久久麻豆| 无码av中文一区二区三区桃花岛| 精品国产青草久久久久福利| 91丨porny丨首页| 精品一区二区三区免费视频| 亚洲丝袜另类动漫二区| 日韩欧美高清在线| 色欧美片视频在线观看| 国产制服丝袜一区| 亚洲福利电影网| 日本一区二区三区电影| 欧美一区二区视频在线观看2022 | 天堂午夜影视日韩欧美一区二区| 精品久久久久av影院| 欧美中文字幕一区二区三区亚洲| 国内国产精品久久| 亚洲国产日韩在线一区模特| 国产三级三级三级精品8ⅰ区| 91麻豆精品国产91久久久资源速度 | 综合激情成人伊人| 欧美精品一区二区三区久久久 | 久久久久久久久久久久久久久99| 在线看国产一区二区| 成年人国产精品| 国产精品亚洲综合一区在线观看| 日韩精品午夜视频| 亚洲午夜激情av| 亚洲另类在线制服丝袜| 亚洲人亚洲人成电影网站色| 久久久久久久久久久久久女国产乱| 欧美日韩精品一区视频| 欧美影片第一页| 欧美优质美女网站| 欧美探花视频资源| 欧美专区日韩专区| 欧美亚洲免费在线一区| 色婷婷av一区二区| 欧美性一级生活| 欧美亚洲综合另类| 欧美日韩免费一区二区三区 | 日韩精品一级二级| 亚洲成精国产精品女| 污片在线观看一区二区| 日韩电影免费在线观看网站| 亚洲大片一区二区三区| 亚洲成a天堂v人片| 日韩中文字幕不卡| 麻豆专区一区二区三区四区五区| 蜜桃久久精品一区二区| 国产一区二区三区精品欧美日韩一区二区三区| 午夜亚洲福利老司机| 舔着乳尖日韩一区| 美女一区二区在线观看| 久88久久88久久久| 丁香六月综合激情| 91网站最新地址| 欧美日韩亚洲综合一区| 日韩一级片在线播放| 久久综合久色欧美综合狠狠| 中文字幕乱码久久午夜不卡 | 国产高清无密码一区二区三区| 精品一区二区三区的国产在线播放| 久久不见久久见免费视频1| 激情深爱一区二区| 成人精品亚洲人成在线| 在线观看日产精品| 精品毛片乱码1区2区3区| 日本一区二区三区久久久久久久久不 | 国产一区二区三区电影在线观看 | 亚洲女爱视频在线| 亚洲成人av一区| 国产麻豆精品在线观看| 99久久精品免费| 欧美大片顶级少妇| 亚洲人吸女人奶水| 久久精品72免费观看| 91尤物视频在线观看| 日韩一区二区免费在线观看| 国产欧美日韩亚州综合 | 亚洲欧美色图小说| 人人爽香蕉精品| 91丨九色porny丨蝌蚪| 欧美大黄免费观看| 亚洲国产综合91精品麻豆| 激情综合色播激情啊| 欧美日韩亚洲综合一区| 国产精品久久久久婷婷二区次| 日本欧美在线观看|