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

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

?? jdhuff.h

?? 常好且全面的jpeg圖像壓縮算法
?? H
字號:
/*
 * jdhuff.h
 *
 * Copyright (C) 1991-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 declarations for Huffman entropy decoding routines
 * that are shared between the sequential decoder (jdhuff.c) and the
 * progressive decoder (jdphuff.c).  No other modules need to see these.
 */

/* Short forms of external names for systems with brain-damaged linkers. */

#ifdef NEED_SHORT_EXTERNAL_NAMES
#define jpeg_make_d_derived_tbl	jMkDDerived
#define jpeg_fill_bit_buffer	jFilBitBuf
#define jpeg_huff_decode	jHufDecode
#endif /* NEED_SHORT_EXTERNAL_NAMES */


/* Derived data constructed for each Huffman table */

#define HUFF_LOOKAHEAD	8	/* # of bits of lookahead */

typedef struct {
  /* Basic tables: (element [0] of each array is unused) */
  INT32 maxcode[18];		/* largest code of length k (-1 if none) */
  /* (maxcode[17] is a sentinel to ensure jpeg_huff_decode terminates) */
  INT32 valoffset[17];		/* huffval[] offset for codes of length k */
  /* valoffset[k] = huffval[] index of 1st symbol of code length k, less
   * the smallest code of length k; so given a code of length k, the
   * corresponding symbol is huffval[code + valoffset[k]]
   */

  /* Link to public Huffman table (needed only in jpeg_huff_decode) */
  JHUFF_TBL *pub;

  /* Lookahead tables: indexed by the next HUFF_LOOKAHEAD bits of
   * the input data stream.  If the next Huffman code is no more
   * than HUFF_LOOKAHEAD bits long, we can obtain its length and
   * the corresponding symbol directly from these tables.
   */
  int look_nbits[1<<HUFF_LOOKAHEAD]; /* # bits, or 0 if too long */
  UINT8 look_sym[1<<HUFF_LOOKAHEAD]; /* symbol, or unused */
} d_derived_tbl;

/* Expand a Huffman table definition into the derived format */
EXTERN(void) jpeg_make_d_derived_tbl
	JPP((j_decompress_ptr cinfo, boolean isDC, int tblno,
	     d_derived_tbl ** pdtbl));


/*
 * Fetching the next N bits from the input stream is a time-critical operation
 * for the Huffman decoders.  We implement it with a combination of inline
 * macros and out-of-line subroutines.  Note that N (the number of bits
 * demanded at one time) never exceeds 15 for JPEG use.
 *
 * We read source bytes into get_buffer and dole out bits as needed.
 * If get_buffer already contains enough bits, they are fetched in-line
 * by the macros CHECK_BIT_BUFFER and GET_BITS.  When there aren't enough
 * bits, jpeg_fill_bit_buffer is called; it will attempt to fill get_buffer
 * as full as possible (not just to the number of bits needed; this
 * prefetching reduces the overhead cost of calling jpeg_fill_bit_buffer).
 * Note that jpeg_fill_bit_buffer may return FALSE to indicate suspension.
 * On TRUE return, jpeg_fill_bit_buffer guarantees that get_buffer contains
 * at least the requested number of bits --- dummy zeroes are inserted if
 * necessary.
 */

typedef INT32 bit_buf_type;	/* type of bit-extraction buffer */
#define BIT_BUF_SIZE  32	/* size of buffer in bits */

/* If long is > 32 bits on your machine, and shifting/masking longs is
 * reasonably fast, making bit_buf_type be long and setting BIT_BUF_SIZE
 * appropriately should be a win.  Unfortunately we can't define the size
 * with something like  #define BIT_BUF_SIZE (sizeof(bit_buf_type)*8)
 * because not all machines measure sizeof in 8-bit bytes.
 */

typedef struct {		/* Bitreading state saved across MCUs */
  bit_buf_type get_buffer;	/* current bit-extraction buffer */
  int bits_left;		/* # of unused bits in it */
} bitread_perm_state;

typedef struct {		/* Bitreading working state within an MCU */
  /* Current data source location */
  /* We need a copy, rather than munging the original, in case of suspension */
  const JOCTET * next_input_byte; /* => next byte to read from source */
  size_t bytes_in_buffer;	/* # of bytes remaining in source buffer */
  /* Bit input buffer --- note these values are kept in register variables,
   * not in this struct, inside the inner loops.
   */
  bit_buf_type get_buffer;	/* current bit-extraction buffer */
  int bits_left;		/* # of unused bits in it */
  /* Pointer needed by jpeg_fill_bit_buffer. */
  j_decompress_ptr cinfo;	/* back link to decompress master record */
} bitread_working_state;

/* Macros to declare and load/save bitread local variables. */
#define BITREAD_STATE_VARS  \
	register bit_buf_type get_buffer;  \
	register int bits_left;  \
	bitread_working_state br_state

#define BITREAD_LOAD_STATE(cinfop,permstate)  \
	br_state.cinfo = cinfop; \
	br_state.next_input_byte = cinfop->src->next_input_byte; \
	br_state.bytes_in_buffer = cinfop->src->bytes_in_buffer; \
	get_buffer = permstate.get_buffer; \
	bits_left = permstate.bits_left;

#define BITREAD_SAVE_STATE(cinfop,permstate)  \
	cinfop->src->next_input_byte = br_state.next_input_byte; \
	cinfop->src->bytes_in_buffer = br_state.bytes_in_buffer; \
	permstate.get_buffer = get_buffer; \
	permstate.bits_left = bits_left

/*
 * These macros provide the in-line portion of bit fetching.
 * Use CHECK_BIT_BUFFER to ensure there are N bits in get_buffer
 * before using GET_BITS, PEEK_BITS, or DROP_BITS.
 * The variables get_buffer and bits_left are assumed to be locals,
 * but the state struct might not be (jpeg_huff_decode needs this).
 *	CHECK_BIT_BUFFER(state,n,action);
 *		Ensure there are N bits in get_buffer; if suspend, take action.
 *      val = GET_BITS(n);
 *		Fetch next N bits.
 *      val = PEEK_BITS(n);
 *		Fetch next N bits without removing them from the buffer.
 *	DROP_BITS(n);
 *		Discard next N bits.
 * The value N should be a simple variable, not an expression, because it
 * is evaluated multiple times.
 */

#define CHECK_BIT_BUFFER(state,nbits,action) \
	{ if (bits_left < (nbits)) {  \
	    if (! jpeg_fill_bit_buffer(&(state),get_buffer,bits_left,nbits))  \
	      { action; }  \
	    get_buffer = (state).get_buffer; bits_left = (state).bits_left; } }

#define GET_BITS(nbits) \
	(((int) (get_buffer >> (bits_left -= (nbits)))) & ((1<<(nbits))-1))

#define PEEK_BITS(nbits) \
	(((int) (get_buffer >> (bits_left -  (nbits)))) & ((1<<(nbits))-1))

#define DROP_BITS(nbits) \
	(bits_left -= (nbits))

/* Load up the bit buffer to a depth of at least nbits */
EXTERN(boolean) jpeg_fill_bit_buffer
	JPP((bitread_working_state * state, register bit_buf_type get_buffer,
	     register int bits_left, int nbits));


/*
 * Code for extracting next Huffman-coded symbol from input bit stream.
 * Again, this is time-critical and we make the main paths be macros.
 *
 * We use a lookahead table to process codes of up to HUFF_LOOKAHEAD bits
 * without looping.  Usually, more than 95% of the Huffman codes will be 8
 * or fewer bits long.  The few overlength codes are handled with a loop,
 * which need not be inline code.
 *
 * Notes about the HUFF_DECODE macro:
 * 1. Near the end of the data segment, we may fail to get enough bits
 *    for a lookahead.  In that case, we do it the hard way.
 * 2. If the lookahead table contains no entry, the next code must be
 *    more than HUFF_LOOKAHEAD bits long.
 * 3. jpeg_huff_decode returns -1 if forced to suspend.
 */

#define HUFF_DECODE(result,state,htbl,failaction,slowlabel) \
{ register int nb, look; \
  if (bits_left < HUFF_LOOKAHEAD) { \
    if (! jpeg_fill_bit_buffer(&state,get_buffer,bits_left, 0)) {failaction;} \
    get_buffer = state.get_buffer; bits_left = state.bits_left; \
    if (bits_left < HUFF_LOOKAHEAD) { \
      nb = 1; goto slowlabel; \
    } \
  } \
  look = PEEK_BITS(HUFF_LOOKAHEAD); \
  if ((nb = htbl->look_nbits[look]) != 0) { \
    DROP_BITS(nb); \
    result = htbl->look_sym[look]; \
  } else { \
    nb = HUFF_LOOKAHEAD+1; \
slowlabel: \
    if ((result=jpeg_huff_decode(&state,get_buffer,bits_left,htbl,nb)) < 0) \
	{ failaction; } \
    get_buffer = state.get_buffer; bits_left = state.bits_left; \
  } \
}

/* Out-of-line case for Huffman code fetching */
EXTERN(int) jpeg_huff_decode
	JPP((bitread_working_state * state, register bit_buf_type get_buffer,
	     register int bits_left, d_derived_tbl * htbl, int min_bits));

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91日韩一区二区三区| 中文字幕亚洲综合久久菠萝蜜| 亚洲免费看黄网站| 91视视频在线直接观看在线看网页在线看| 欧美激情在线一区二区三区| 成人av网站在线观看免费| 国产精品久久久久久久午夜片| 成人小视频免费在线观看| 国产精品久线在线观看| 91天堂素人约啪| 亚洲国产精品久久不卡毛片| 6080亚洲精品一区二区| 免费观看一级欧美片| 国产三级欧美三级日产三级99| 成人伦理片在线| 亚洲国产成人tv| 欧美精品一区二区三| 99综合影院在线| 五月天丁香久久| 亚洲国产精品av| 欧美日韩视频一区二区| 激情五月激情综合网| 中文字幕一区二区5566日韩| 亚洲精品一区二区三区在线观看 | 日本一区二区不卡视频| 色婷婷综合久久久久中文一区二区| 亚洲图片欧美视频| ww亚洲ww在线观看国产| 一本色道综合亚洲| 久久国产精品一区二区| 亚洲精品日韩综合观看成人91| 欧美一二三四在线| 99re成人精品视频| 久久se精品一区二区| 国产精品成人一区二区艾草| 91精品国产综合久久久蜜臀粉嫩| 国产麻豆精品视频| 亚洲v精品v日韩v欧美v专区| 欧美国产一区在线| 日韩欧美国产三级| 欧美伊人久久大香线蕉综合69| 国产一区不卡精品| 亚洲第一精品在线| 亚洲视频你懂的| 2020国产精品| 日韩一区二区在线看| 日本道精品一区二区三区 | 韩国精品在线观看| 亚洲永久免费视频| 国产欧美视频一区二区三区| 日韩一区二区三区视频在线观看| 色吧成人激情小说| 国产suv精品一区二区6| 麻豆成人av在线| 亚洲最大成人综合| 日韩理论片在线| 亚洲国产高清不卡| 欧美精品一区二区精品网| 欧美精品亚洲一区二区在线播放| 色先锋久久av资源部| 风间由美一区二区av101| 精品在线观看免费| 裸体一区二区三区| 免费在线看成人av| 日韩福利视频导航| 日韩成人午夜精品| 天天色 色综合| 亚洲成a人v欧美综合天堂下载| 亚洲免费观看高清完整版在线观看| 国产精品国产a| 国产精品美女久久久久久久| 国产亚洲视频系列| 国产女人aaa级久久久级| 久久久亚洲精品石原莉奈| 欧美一区二区在线看| 91超碰这里只有精品国产| 欧美久久一二三四区| 欧美日韩国产大片| 欧美丰满嫩嫩电影| 欧美电影精品一区二区| 91精品福利在线一区二区三区| 制服丝袜激情欧洲亚洲| 欧美一级午夜免费电影| 日韩欧美不卡一区| 久久亚洲精品国产精品紫薇| 国产日韩欧美电影| 国产精品水嫩水嫩| 国产精品伦理在线| 亚洲精品日产精品乱码不卡| ...av二区三区久久精品| 亚洲男女毛片无遮挡| 一区二区久久久久| 日韩成人伦理电影在线观看| 精品一区精品二区高清| 国产成a人无v码亚洲福利| 成人高清av在线| 91传媒视频在线播放| 欧美久久婷婷综合色| 精品1区2区在线观看| 中文字幕一区二区在线播放 | 欧美成人精品3d动漫h| 日韩一区二区中文字幕| 久久久五月婷婷| 国产精品久久久久9999吃药| 亚洲在线免费播放| 国产中文字幕精品| 在线欧美日韩精品| 欧美一二三区在线| 中文字幕日韩欧美一区二区三区| 亚洲午夜久久久久久久久电影院 | 亚洲国产成人va在线观看天堂| 美女尤物国产一区| 91网站最新地址| 欧美成人国产一区二区| 亚洲天堂网中文字| 奇米色一区二区| av亚洲精华国产精华| 欧美欧美欧美欧美| 国产精品卡一卡二| 麻豆一区二区在线| 色婷婷亚洲精品| 精品久久久久久久人人人人传媒| 亚洲三级在线免费观看| 麻豆中文一区二区| 欧美色大人视频| 国产清纯在线一区二区www| 香蕉加勒比综合久久| 成人自拍视频在线| 日韩精品中午字幕| 亚洲美女视频在线| 国产精品一二三四| 欧美老年两性高潮| 综合久久一区二区三区| 精品一区二区三区蜜桃| 欧美日韩一区二区在线视频| 中文字幕av一区 二区| 免费视频最近日韩| 欧美三级电影在线观看| 国产精品区一区二区三区| 美女视频黄a大片欧美| 欧美中文字幕久久| 综合自拍亚洲综合图不卡区| 国产成人精品综合在线观看 | 666欧美在线视频| 一区二区三区四区中文字幕| 成人一区二区在线观看| 欧美xxxx老人做受| 热久久国产精品| 欧美日韩激情在线| 一区二区三区国产精品| av在线这里只有精品| 日本一区二区三区国色天香 | 国产九色sp调教91| 日韩欧美www| 久久国内精品视频| 538在线一区二区精品国产| 亚洲综合视频在线观看| 一本到高清视频免费精品| 国产精品美日韩| 成人精品视频网站| 中文字幕乱码日本亚洲一区二区| 紧缚捆绑精品一区二区| 欧美大黄免费观看| 精品伊人久久久久7777人| 日韩视频在线你懂得| 男女视频一区二区| 日韩一区二区在线观看视频| 美腿丝袜亚洲综合| 日韩精品一区二区三区在线播放| 人人狠狠综合久久亚洲| 亚洲私人黄色宅男| 91天堂素人约啪| 一片黄亚洲嫩模| 欧美日韩国产一级二级| 亚洲bt欧美bt精品| 91麻豆精品国产自产在线| 日韩二区三区在线观看| 日韩一区二区三免费高清| 国产综合久久久久久鬼色 | 欧美日韩电影在线播放| 婷婷一区二区三区| 日韩欧美中文字幕公布| 久久成人av少妇免费| 国产人成亚洲第一网站在线播放| 成人综合婷婷国产精品久久蜜臀| 国产精品毛片a∨一区二区三区| 成人app在线| 亚洲一区日韩精品中文字幕| 欧美揉bbbbb揉bbbbb| 天堂av在线一区| 欧美精品一区二| av中文字幕亚洲| 视频一区中文字幕国产| 久久这里只有精品6| 成人妖精视频yjsp地址| 亚洲一区二区在线播放相泽| 日韩欧美国产精品一区| hitomi一区二区三区精品| 亚洲国产精品一区二区久久恐怖片 | 精品国产a毛片|