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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? jdhuff.c

?? 常好且全面的jpeg圖像壓縮算法
?? C
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
	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;
  }
}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久中文娱乐网| 久久女同精品一区二区| 国产精品99久久久久久久女警| 欧美激情一区二区三区在线| 欧美中文字幕久久| 狠狠色伊人亚洲综合成人| 樱桃国产成人精品视频| 精品成人免费观看| 在线成人免费视频| 91日韩精品一区| 国产福利一区二区三区| 日韩电影一二三区| 亚洲柠檬福利资源导航| 国产欧美1区2区3区| 日韩欧美一二三| 欧美丰满嫩嫩电影| 91福利国产成人精品照片| 成人在线视频一区二区| 麻豆一区二区在线| 亚洲高清免费在线| 亚洲免费av高清| 国产精品乱子久久久久| 久久精品一区四区| 精品国产一区二区三区四区四| 欧美色偷偷大香| 91久久精品一区二区三区| 成人综合婷婷国产精品久久蜜臀| 极品少妇一区二区三区精品视频| 亚洲成人久久影院| 一区二区三区精品视频在线| 日韩毛片一二三区| 日本一区二区免费在线| 久久久久国产一区二区三区四区| 欧美片网站yy| 欧美美女网站色| 欧美日韩国产高清一区二区| 在线欧美日韩精品| 欧美三级乱人伦电影| 在线观看日韩国产| 欧美午夜电影网| 欧美美女一区二区三区| 555夜色666亚洲国产免| 欧美高清精品3d| 欧美变态tickling挠脚心| 欧美成人艳星乳罩| 欧美大片在线观看一区二区| 精品国产一二三| 国产人妖乱国产精品人妖| 国产偷v国产偷v亚洲高清| 日本一区二区成人在线| 国产精品国产三级国产三级人妇| 18欧美乱大交hd1984| 伊人婷婷欧美激情| 香蕉加勒比综合久久| 免费看欧美美女黄的网站| 久久激情五月婷婷| 国产成人亚洲综合a∨婷婷| www.视频一区| 91精品办公室少妇高潮对白| 欧美日韩精品是欧美日韩精品| 欧美日韩国产一级片| 日韩视频永久免费| 国产亚洲一本大道中文在线| 国产精品黄色在线观看| 亚洲高清免费视频| 精品无人码麻豆乱码1区2区 | www精品美女久久久tv| 精品女同一区二区| 国产精品你懂的在线| 亚洲一区欧美一区| 麻豆国产欧美日韩综合精品二区| 国产aⅴ综合色| 欧美性xxxxx极品少妇| 欧美大片一区二区三区| 国产精品色一区二区三区| 一区二区三区中文在线| 麻豆91在线观看| 91在线视频18| 日韩精品一区二区三区在线| 国产精品免费av| 日韩激情av在线| 成人av电影免费在线播放| 欧美日韩国产123区| 久久男人中文字幕资源站| 亚洲欧洲综合另类| 久久aⅴ国产欧美74aaa| 色婷婷久久久久swag精品| 日韩视频免费观看高清完整版 | 日韩福利视频网| 成人网页在线观看| 欧美裸体一区二区三区| 国产精品护士白丝一区av| 男男视频亚洲欧美| 色噜噜狠狠色综合欧洲selulu| 日韩欧美视频一区| 亚洲色图欧美在线| 韩国v欧美v亚洲v日本v| 在线观看网站黄不卡| 国产亚洲精品bt天堂精选| 日韩影院精彩在线| 色综合久久久久久久久久久| 久久一二三国产| 天天综合色天天| 91视视频在线直接观看在线看网页在线看 | 国产日韩欧美精品电影三级在线 | 激情综合网av| 欧美日韩视频第一区| 国产日产精品1区| 久久精品免费观看| 欧美精品 国产精品| 亚洲欧美日韩国产综合在线| 国产成人三级在线观看| 日韩一区二区精品| 午夜精品久久一牛影视| av不卡免费在线观看| 国产偷v国产偷v亚洲高清| 精品亚洲免费视频| 欧美剧在线免费观看网站| 18成人在线观看| 白白色 亚洲乱淫| 日本一区二区免费在线观看视频 | 中文字幕亚洲综合久久菠萝蜜| 久久99热这里只有精品| 欧美高清你懂得| 日韩精品一二三区| 91精品国产色综合久久不卡电影 | 3d成人动漫网站| 亚洲成av人片在线观看无码| 色狠狠av一区二区三区| 亚洲天堂2014| 色域天天综合网| 亚洲精品第1页| 欧美在线看片a免费观看| 亚洲免费伊人电影| 欧美在线观看一二区| 亚洲宅男天堂在线观看无病毒| 91福利国产成人精品照片| 亚洲女子a中天字幕| 在线这里只有精品| 亚洲精品国产一区二区三区四区在线| 91视视频在线直接观看在线看网页在线看 | 午夜av电影一区| 337p亚洲精品色噜噜噜| 麻豆91在线观看| 久久精品网站免费观看| 成人激情av网| 亚洲精品国产无天堂网2021| 91国偷自产一区二区三区观看| 夜夜爽夜夜爽精品视频| 欧美色网站导航| 日韩—二三区免费观看av| 精品三级在线观看| 成人精品一区二区三区四区| 亚洲品质自拍视频| 欧美久久婷婷综合色| 久久国产免费看| 日本一区免费视频| 欧美在线制服丝袜| 青青草国产成人99久久| 国产无人区一区二区三区| 91丨九色丨蝌蚪富婆spa| 午夜精品在线视频一区| 日韩欧美一区在线| 国产99一区视频免费| 亚洲一级二级在线| 日韩欧美亚洲另类制服综合在线| 国产成人综合视频| 亚洲精品成人悠悠色影视| 欧美日韩精品专区| 国产成人亚洲精品青草天美| 一区二区三区在线免费视频| 欧美精品久久天天躁| 国产精品亚洲综合一区在线观看| 中文在线资源观看网站视频免费不卡| 91天堂素人约啪| 久久精品噜噜噜成人88aⅴ| 中文字幕一区在线| 欧美一区二区三区日韩| 成人毛片在线观看| 免费在线观看一区二区三区| 国产精品女上位| 日韩精品综合一本久道在线视频| 成人18视频在线播放| 日韩av成人高清| 亚洲精品视频免费看| 精品国产自在久精品国产| 在线亚洲一区二区| 国产麻豆视频一区| 婷婷亚洲久悠悠色悠在线播放| 国产亚洲欧美中文| 51精品视频一区二区三区| 成人不卡免费av| 久久99精品久久久久久动态图 | 日韩三级.com| 色综合欧美在线| 国产老肥熟一区二区三区| 丝瓜av网站精品一区二区| 亚洲少妇最新在线视频| 久久婷婷综合激情| 91精品国产综合久久精品app |