/* 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) */
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 *thesmallestcodeoflengthk;sogivenacodeoflengthk,the *correspondingsymbolishuffval[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 *theinputdatastream.IfthenextHuffmancodeisnomore *thanHUFF_LOOKAHEADbitslong,wecanobtainitslengthand *thecorrespondingsymboldirectlyfromthesetables.
*/ 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));
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 *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
JPP((bitread_working_state * state, register bit_buf_type get_buffer, registerint bits_left, int nbits));
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.