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

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

?? jdphuff.c

?? 這套代碼已經成功一直到S3C44B0X開發板上
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*
 * jdphuff.c
 *
 * Copyright (C) 1995-1997, Thomas G. Lane.
 * This file is part of the Independent JPEG Group's software.
 * For conditions of distribution and use, see the accompanying README file.
 *
 * This file contains Huffman entropy decoding routines for progressive JPEG.
 *
 * Much of the complexity here has to do with supporting input suspension.
 * If the data source module demands suspension, we want to be able to back
 * up to the start of the current MCU.  To do this, we copy state variables
 * into local working storage, and update them back to the permanent
 * storage only upon successful completion of an MCU.
 */

#define JPEG_INTERNALS
#include "jinclude.h"
#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
#endif


typedef 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;
  /* Arguably the maximum Al value should be less than 13 for 8-bit precision,
   * but the spec doesn't say so, and we try to be liberal about what we
   * accept.  Note: large Al values could result in out-of-range DC
   * coefficients during early scans, leading to bizarre displays due to
   * overflows in the IDCT math.  But we won't crash.
   */
  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;
	jpeg_make_d_derived_tbl(cinfo, TRUE, tbl,
				& entropy->derived_tbls[tbl]);
      }
    } else {
      tbl = compptr->ac_tbl_no;
      jpeg_make_d_derived_tbl(cinfo, FALSE, 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->pub.insufficient_data = 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;

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


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

  /* 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++) {
      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 coefficient (assumes jpeg_natural_order[0]=0) */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩av在线免费观看不卡| 亚洲日本在线看| 日韩在线一区二区| 在线观看视频91| 一区二区三区久久| 欧美男生操女生| 日韩电影免费在线看| 欧美不卡一区二区三区| 精品无人码麻豆乱码1区2区 | 久久99精品网久久| 精品久久五月天| 丰满放荡岳乱妇91ww| 亚洲欧美另类综合偷拍| 欧美三级在线看| 日本三级韩国三级欧美三级| 日韩精品专区在线影院观看| 国产一区二区三区av电影| 国产精品免费久久| 欧美视频一区二区三区四区| 蜜臀精品久久久久久蜜臀 | 3atv在线一区二区三区| 久久不见久久见中文字幕免费| 欧美mv日韩mv| 97精品视频在线观看自产线路二| 亚洲一区二区三区爽爽爽爽爽| 欧美一级一区二区| 成人精品在线视频观看| 亚洲电影在线免费观看| 久久久亚洲精品一区二区三区| eeuss鲁片一区二区三区在线观看| 亚洲精品乱码久久久久久黑人| 91精品久久久久久久99蜜桃| 丁香网亚洲国际| 亚洲成人第一页| 国产日韩欧美不卡| 欧美日韩一区二区三区在线看| 久久精品国产秦先生| 自拍偷自拍亚洲精品播放| 91麻豆精品国产自产在线 | 亚洲美女在线国产| 欧美大片在线观看一区| 91丨porny丨国产入口| 免费xxxx性欧美18vr| 亚洲美女淫视频| 国产丝袜欧美中文另类| 91麻豆精品国产91久久久久久| 成人夜色视频网站在线观看| 奇米精品一区二区三区在线观看| 亚洲日本免费电影| 久久香蕉国产线看观看99| 欧美视频在线观看一区| 成人午夜视频在线观看| 美女视频网站久久| 亚洲成年人网站在线观看| 欧美国产精品久久| 日韩一级成人av| 日本二三区不卡| 成人丝袜视频网| 国产伦精品一区二区三区免费| 亚洲自拍偷拍av| 亚洲女同ⅹxx女同tv| 亚洲国产精品激情在线观看 | 99riav久久精品riav| 久草精品在线观看| 蜜臀久久久久久久| 午夜精品爽啪视频| 亚洲1区2区3区视频| 亚洲天堂av老司机| 日本一区二区电影| 中文字幕第一区综合| 久久精品男人天堂av| 日韩久久久精品| 欧美一区二区精品在线| 3atv在线一区二区三区| 欧美精选在线播放| 在线播放91灌醉迷j高跟美女 | 国产精品高清亚洲| 国产精品丝袜在线| 亚洲三级久久久| 一区二区三区四区在线免费观看 | 国产网站一区二区三区| 精品国产一区二区在线观看| 亚洲免费观看高清完整| 亚洲日本欧美天堂| 一级做a爱片久久| 亚洲一二三级电影| 日韩中文字幕一区二区三区| 天堂在线一区二区| 免费人成在线不卡| 六月丁香综合在线视频| 久久 天天综合| 国产suv精品一区二区三区| 国产99久久久精品| 91亚洲精品乱码久久久久久蜜桃| 色综合久久中文综合久久牛| 在线观看国产日韩| 日韩精品一区在线| 国产欧美日韩精品在线| 亚洲欧美日韩成人高清在线一区| 亚洲一区在线观看免费观看电影高清| 午夜在线成人av| 六月婷婷色综合| 成人高清在线视频| 在线视频你懂得一区| 欧美一区二区三区免费| 久久久九九九九| 夜夜嗨av一区二区三区中文字幕 | 一区二区三区在线视频播放| 偷拍日韩校园综合在线| 九九热在线视频观看这里只有精品| 国产美女久久久久| 色一情一乱一乱一91av| 91精品久久久久久久99蜜桃 | 蜜臀av性久久久久蜜臀av麻豆| 韩国av一区二区三区四区| 91蝌蚪porny九色| 欧美一区二区视频免费观看| 国产精品美女久久久久久久| 爽好久久久欧美精品| 国产乱码精品一区二区三区av | 欧美三级日韩三级| 337p粉嫩大胆噜噜噜噜噜91av| 中文字幕日韩av资源站| 日本成人在线视频网站| 国产69精品久久久久777| 欧美日韩在线不卡| 日本一区二区动态图| 男男gaygay亚洲| 99久久精品国产观看| 欧美tk—视频vk| 亚洲一区视频在线| 成人黄色大片在线观看| 欧美一区二区久久久| 亚洲女子a中天字幕| 国产精品一区二区久久不卡| 欧美午夜精品久久久| 国产欧美久久久精品影院| 日韩精品一二三| 99久久国产综合精品女不卡| 久久夜色精品一区| 天堂成人免费av电影一区| eeuss影院一区二区三区| 精品国产制服丝袜高跟| 视频一区中文字幕| 91福利在线免费观看| 国产精品国产自产拍高清av王其| 欧美视频一二三区| 中文字幕日韩一区| 国产成人在线影院| 欧美mv和日韩mv的网站| 亚洲国产另类精品专区| 91一区二区三区在线观看| 久久久国产精华| 久久疯狂做爰流白浆xx| 这里只有精品免费| 亚洲成人一区二区| 91色婷婷久久久久合中文| 欧美激情一区二区三区四区 | 国产亚洲美州欧州综合国| 久久99精品久久久久久动态图| 欧美揉bbbbb揉bbbbb| 亚洲自拍偷拍网站| 欧美日韩亚洲另类| 亚洲综合一区二区| 在线精品视频一区二区三四| 亚洲免费在线看| 在线观看欧美黄色| 亚洲成人激情自拍| 69p69国产精品| 麻豆精品久久久| 日韩一区国产二区欧美三区| 日产精品久久久久久久性色| 制服丝袜亚洲色图| 蜜臀久久99精品久久久久宅男| 日韩一区二区三区av| 麻豆精品视频在线| 久久综合国产精品| 高清国产一区二区| 国产精品天天看| 91网站最新网址| 亚洲成人午夜影院| 日韩一二三区视频| 国产盗摄女厕一区二区三区| 国产拍揄自揄精品视频麻豆| 国产精一品亚洲二区在线视频| 国产亚洲女人久久久久毛片| 波多野结衣在线aⅴ中文字幕不卡| 国产精品久久久久婷婷二区次| 91视频国产观看| 日韩综合小视频| 久久亚洲精精品中文字幕早川悠里| 欧美精品成人一区二区三区四区| 日韩国产欧美在线播放| 337p粉嫩大胆噜噜噜噜噜91av | 精品在线观看视频| 国产色婷婷亚洲99精品小说| 成人av第一页| 视频一区国产视频| 国产女人水真多18毛片18精品视频| www.一区二区|