/* Derived data constructed for each Huffman table */
#define HUFF_LOOKAHEAD 8/* # of bits of lookahead */
typedefstruct { /* Basic tables: (element [0] of each array is unused) */
JLONG maxcode[18]; /* largest code of length k (-1 if none) */ /* (maxcode[17] is a sentinel to ensure jpeg_huff_decode terminates) */
JLONG valoffset[18]; /* huffval[] offset for codes of length k */ /* valoffset[k] = huffval[] index of 1st symbol of code length k, less *thesmallestcodeoflengthk;sogivenacodeoflengthk,the *correspondingsymbolishuffval[code+valoffset[k]]
*/
/* Link to public Huffman table (needed only in jpeg_huff_decode) */
JHUFF_TBL *pub;
/* Lookahead table: indexed by the next HUFF_LOOKAHEAD bits of *theinputdatastream.IfthenextHuffmancodeisnomore *thanHUFF_LOOKAHEADbitslong,wecanobtainitslengthand *thecorrespondingsymboldirectlyfromthistables. * *Thelower8bitsofeachtableentrycontainthenumberof *bitsinthecorrespondingHuffmancode,orHUFF_LOOKAHEAD+1 *iftoolong.Thenext8bitsofeachentrycontainthe *symbol.
*/ int lookup[1 << HUFF_LOOKAHEAD];
} d_derived_tbl;
/* Expand a Huffman table definition into the derived format */ EXTERN(void) jpeg_make_d_derived_tbl(j_decompress_ptr cinfo, boolean isDC, int tblno, d_derived_tbl **pdtbl);
#if !defined(_WIN32) && !defined(SIZEOF_SIZE_T) #error Cannot determine word size #endif
#if SIZEOF_SIZE_T == 8 || defined(_WIN64)
typedef size_t bit_buf_type; /* type of bit-extraction buffer */ #define BIT_BUF_SIZE 64/* size of buffer in bits */
#elifdefined(__x86_64__) && defined(__ILP32__)
typedefunsignedlonglong bit_buf_type; /* type of bit-extraction buffer */ #define BIT_BUF_SIZE 64/* size of buffer in bits */
#else
typedefunsignedlong bit_buf_type; /* type of bit-extraction buffer */ #define BIT_BUF_SIZE 32/* size of buffer in bits */
#endif
/* If long is > 32 bits on your machine, and shifting/masking longs is *reasonablyfast,makingbit_buf_typebelongandsettingBIT_BUF_SIZE *appropriatelyshouldbeawin.Unfortunatelywecan'tdefinethesize *withsomethinglike#defineBIT_BUF_SIZE(sizeof(bit_buf_type)*8) *becausenotallmachinesmeasuresizeofin8-bitbytes.
*/
typedefstruct { /* 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;
typedefstruct { /* 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, *notinthisstruct,insidetheinnerloops.
*/
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; \ registerint bits_left; \
bitread_working_state br_state
/* Load up the bit buffer to a depth of at least nbits */ EXTERN(boolean) jpeg_fill_bit_buffer(bitread_working_state *state, register bit_buf_type get_buffer, registerint bits_left, int nbits);
#define HUFF_DECODE_FAST(s, nb, htbl) \
FILL_BIT_BUFFER_FAST; \
s = PEEK_BITS(HUFF_LOOKAHEAD); \
s = htbl->lookup[s]; \
nb = s >> HUFF_LOOKAHEAD; \ /* Pre-execute the common case of nb <= HUFF_LOOKAHEAD */ \
DROP_BITS(nb); \
s = s & ((1 << HUFF_LOOKAHEAD) - 1); \ if (nb > HUFF_LOOKAHEAD) { \ /* Equivalent of jpeg_huff_decode() */ \ /* Don't use GET_BITS() here because we don't want to modify bits_left */ \
s = (get_buffer >> bits_left) & ((1 << (nb)) - 1); \ while (s > htbl->maxcode[nb]) { \
s <<= 1; \
s |= GET_BITS(1); \
nb++; \
} \ if (nb > 16) \
s = 0; \ else \
s = htbl->pub->huffval[(int)(s + htbl->valoffset[nb]) & 0xFF]; \
}
/* Out-of-line case for Huffman code fetching */ EXTERN(int) jpeg_huff_decode(bitread_working_state *state, register bit_buf_type get_buffer, registerint bits_left, d_derived_tbl *htbl, int min_bits);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.