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

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

?? jdphuff.c

?? 常好且全面的jpeg圖像壓縮算法
?? 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) */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲综合色| 亚洲精品中文字幕乱码三区 | 亚洲福利一二三区| 欧美xxxx老人做受| 91福利资源站| 粉嫩aⅴ一区二区三区四区五区 | 国产一区二区久久| 亚洲国产精品欧美一二99| 久久久久国产精品人| 在线成人免费观看| 色综合欧美在线| 国产精品 欧美精品| 日本中文字幕不卡| 亚洲自拍偷拍欧美| 国产精品国产精品国产专区不蜜 | 粉嫩av亚洲一区二区图片| 青青青伊人色综合久久| 亚洲精品国产第一综合99久久| 久久综合给合久久狠狠狠97色69| 欧美日韩精品欧美日韩精品一综合| 不卡一二三区首页| 国产91精品在线观看| 激情久久五月天| 日本女优在线视频一区二区| 一区二区三区四区在线免费观看| 国产精品久久久久久久久免费相片 | 欧美激情中文不卡| 精品国产污污免费网站入口 | 欧美一区二区在线观看| 欧美视频一区二区三区四区| 91视频免费观看| 波多野结衣在线aⅴ中文字幕不卡| 国产精品一二三| 国产精品羞羞答答xxdd| 国产在线精品国自产拍免费| 久草精品在线观看| 激情综合网av| 国产在线视频不卡二| 久久国产精品99精品国产| 日韩av电影天堂| 欧美aaa在线| 精品在线免费视频| 激情久久五月天| 国产91富婆露脸刺激对白| 国产成人综合视频| 99久久精品国产麻豆演员表| 91在线免费视频观看| 色www精品视频在线观看| 色一情一伦一子一伦一区| 在线观看日韩精品| 欧美日韩日本视频| 91麻豆精品国产91久久久久久久久| 欧美日韩视频第一区| 欧美日韩视频在线一区二区| 在线成人午夜影院| 精品国产乱码久久久久久1区2区 | 久久99精品国产麻豆婷婷洗澡| 国产在线国偷精品产拍免费yy| 国产成人免费视| 91小视频在线免费看| 欧美在线一区二区| 91精选在线观看| 精品日韩成人av| 国产精品福利av | 成人福利视频网站| 色综合天天做天天爱| 56国语精品自产拍在线观看| 精品免费日韩av| 国产精品国产三级国产普通话99| 一区二区高清免费观看影视大全| 丝袜美腿一区二区三区| 国产一区二区精品久久99| 99精品久久久久久| 91麻豆精品久久久久蜜臀| 中文在线资源观看网站视频免费不卡| 亚洲视频小说图片| 日本不卡一区二区三区高清视频| 国产不卡视频在线播放| 欧美日韩免费一区二区三区| 欧美va天堂va视频va在线| 18欧美亚洲精品| 奇米888四色在线精品| 国产精品99久久不卡二区| 色偷偷成人一区二区三区91| 91精品国产综合久久香蕉麻豆| 国产欧美日韩一区二区三区在线观看| 一区二区三区日韩精品视频| 韩国视频一区二区| 欧美中文字幕久久| 中文字幕成人网| 视频一区二区欧美| 成人免费av在线| 日韩午夜激情视频| 亚洲欧美成人一区二区三区| 理论电影国产精品| 欧美优质美女网站| 国产亚洲欧洲997久久综合| 亚洲国产裸拍裸体视频在线观看乱了| 国产综合一区二区| 欧美喷潮久久久xxxxx| 国产欧美一区二区三区鸳鸯浴| 成人综合在线视频| 欧美精品精品一区| 亚洲伦在线观看| 国产在线播精品第三| 欧美自拍偷拍一区| 中文字幕永久在线不卡| 精品亚洲成a人在线观看| 欧美撒尿777hd撒尿| 中文字幕一区二区在线播放| 精品一二三四在线| 欧美精品丝袜中出| 亚洲精品美国一| 成人免费黄色大片| 久久久久国色av免费看影院| 肉色丝袜一区二区| 91成人在线观看喷潮| 中文字幕一区二区三区在线不卡| 国内成人免费视频| 8x8x8国产精品| 午夜私人影院久久久久| 91美女片黄在线| 国产精品精品国产色婷婷| 国产成人精品一区二| 精品国产乱码久久久久久蜜臀| 日韩高清不卡一区二区三区| 欧美性一二三区| 亚洲综合激情网| 欧美综合久久久| 一区二区三区鲁丝不卡| 一本色道久久综合亚洲91| 亚洲婷婷综合久久一本伊一区 | 成人网页在线观看| 久久久久国产成人精品亚洲午夜| 久久精品国产亚洲a| 日韩欧美电影在线| 毛片不卡一区二区| 日韩精品中文字幕在线不卡尤物| 热久久免费视频| 日韩免费电影一区| 久久草av在线| 精品久久国产老人久久综合| 久久99久久精品欧美| 精品嫩草影院久久| 国产福利电影一区二区三区| 国产亚洲一区二区三区四区| 丁香婷婷深情五月亚洲| 中文字幕第一区二区| 色综合久久天天综合网| 亚洲一区在线观看免费| 欧美精品123区| 免费久久99精品国产| 欧美精品一区二区久久婷婷| 国产一区二区三区蝌蚪| 欧美激情在线一区二区| 99精品视频一区二区| 亚洲自拍与偷拍| 日韩精品资源二区在线| 国产a视频精品免费观看| 国产精品久久久久久亚洲伦| 91精品福利视频| 日本不卡视频在线| 久久婷婷国产综合国色天香| 成人午夜电影小说| 亚洲综合色视频| 欧美大片一区二区三区| 粉嫩一区二区三区在线看| 一级特黄大欧美久久久| 欧美一区二区在线免费观看| 国产精品一级片在线观看| 亚洲人成网站在线| 91麻豆精品国产| 99久久精品国产一区| 日韩精品视频网| 国产精品毛片高清在线完整版| 在线亚洲一区观看| 久久国产剧场电影| 麻豆精品视频在线观看视频| 中文字幕成人网| 69堂成人精品免费视频| 不卡在线视频中文字幕| 婷婷国产v国产偷v亚洲高清| 国产日韩精品视频一区| 欧美日韩成人一区二区| 国产福利一区二区三区视频| 亚洲一区二区三区四区在线| 精品国精品国产尤物美女| 欧洲在线/亚洲| 国产一区不卡精品| 亚洲国产你懂的| 国产精品青草久久| 欧美一区二区三区四区在线观看| 成人av免费网站| 久久成人精品无人区| 亚洲美女淫视频| 国产日韩一级二级三级| 这里只有精品99re| 91黄视频在线| 成人成人成人在线视频| 久久99热狠狠色一区二区|