0N/A/*
553N/A * reserved comment block
0N/A * DO NOT REMOVE OR ALTER!
0N/A */
0N/A/*
0N/A * jdhuff.h
553N/A *
0N/A * Copyright (C) 1991-1997, Thomas G. Lane.
553N/A * This file is part of the Independent JPEG Group's software.
0N/A * For conditions of distribution and use, see the accompanying README file.
0N/A *
0N/A * This file contains declarations for Huffman entropy decoding routines
0N/A * that are shared between the sequential decoder (jdhuff.c) and the
0N/A * progressive decoder (jdphuff.c). No other modules need to see these.
0N/A */
0N/A
0N/A/* Short forms of external names for systems with brain-damaged linkers. */
0N/A
0N/A#ifdef NEED_SHORT_EXTERNAL_NAMES
0N/A#define jpeg_make_d_derived_tbl jMkDDerived
553N/A#define jpeg_fill_bit_buffer jFilBitBuf
553N/A#define jpeg_huff_decode jHufDecode
553N/A#endif /* NEED_SHORT_EXTERNAL_NAMES */
0N/A
0N/A
0N/A/* Derived data constructed for each Huffman table */
0N/A
0N/A#define HUFF_LOOKAHEAD 8 /* # of bits of lookahead */
0N/A
0N/Atypedef struct {
0N/A /* Basic tables: (element [0] of each array is unused) */
0N/A INT32 maxcode[18]; /* largest code of length k (-1 if none) */
0N/A /* (maxcode[17] is a sentinel to ensure jpeg_huff_decode terminates) */
0N/A INT32 valoffset[17]; /* huffval[] offset for codes of length k */
0N/A /* valoffset[k] = huffval[] index of 1st symbol of code length k, less
0N/A * the smallest code of length k; so given a code of length k, the
0N/A * corresponding symbol is huffval[code + valoffset[k]]
0N/A */
0N/A
0N/A /* Link to public Huffman table (needed only in jpeg_huff_decode) */
0N/A JHUFF_TBL *pub;
0N/A
0N/A /* Lookahead tables: indexed by the next HUFF_LOOKAHEAD bits of
0N/A * the input data stream. If the next Huffman code is no more
0N/A * than HUFF_LOOKAHEAD bits long, we can obtain its length and
0N/A * the corresponding symbol directly from these tables.
0N/A */
0N/A int look_nbits[1<<HUFF_LOOKAHEAD]; /* # bits, or 0 if too long */
0N/A UINT8 look_sym[1<<HUFF_LOOKAHEAD]; /* symbol, or unused */
0N/A} d_derived_tbl;
0N/A
0N/A/* Expand a Huffman table definition into the derived format */
0N/AEXTERN(void) jpeg_make_d_derived_tbl
0N/A JPP((j_decompress_ptr cinfo, boolean isDC, int tblno,
0N/A d_derived_tbl ** pdtbl));
0N/A
0N/A
0N/A/*
0N/A * Fetching the next N bits from the input stream is a time-critical operation
0N/A * for the Huffman decoders. We implement it with a combination of inline
0N/A * macros and out-of-line subroutines. Note that N (the number of bits
0N/A * demanded at one time) never exceeds 15 for JPEG use.
0N/A *
0N/A * We read source bytes into get_buffer and dole out bits as needed.
0N/A * If get_buffer already contains enough bits, they are fetched in-line
0N/A * by the macros CHECK_BIT_BUFFER and GET_BITS. When there aren't enough
0N/A * bits, jpeg_fill_bit_buffer is called; it will attempt to fill get_buffer
0N/A * as full as possible (not just to the number of bits needed; this
0N/A * prefetching reduces the overhead cost of calling jpeg_fill_bit_buffer).
0N/A * Note that jpeg_fill_bit_buffer may return FALSE to indicate suspension.
0N/A * On TRUE return, jpeg_fill_bit_buffer guarantees that get_buffer contains
0N/A * at least the requested number of bits --- dummy zeroes are inserted if
0N/A * necessary.
0N/A */
0N/A
0N/Atypedef INT32 bit_buf_type; /* type of bit-extraction buffer */
0N/A#define BIT_BUF_SIZE 32 /* size of buffer in bits */
0N/A
0N/A/* If long is > 32 bits on your machine, and shifting/masking longs is
0N/A * reasonably fast, making bit_buf_type be long and setting BIT_BUF_SIZE
0N/A * appropriately should be a win. Unfortunately we can't define the size
0N/A * with something like #define BIT_BUF_SIZE (sizeof(bit_buf_type)*8)
0N/A * because not all machines measure sizeof in 8-bit bytes.
0N/A */
0N/A
0N/Atypedef struct { /* Bitreading state saved across MCUs */
0N/A bit_buf_type get_buffer; /* current bit-extraction buffer */
0N/A int bits_left; /* # of unused bits in it */
0N/A} bitread_perm_state;
0N/A
0N/Atypedef struct { /* Bitreading working state within an MCU */
0N/A /* Current data source location */
0N/A /* We need a copy, rather than munging the original, in case of suspension */
0N/A const JOCTET * next_input_byte; /* => next byte to read from source */
0N/A size_t bytes_in_buffer; /* # of bytes remaining in source buffer */
0N/A /* Bit input buffer --- note these values are kept in register variables,
0N/A * not in this struct, inside the inner loops.
0N/A */
0N/A bit_buf_type get_buffer; /* current bit-extraction buffer */
0N/A int bits_left; /* # of unused bits in it */
0N/A /* Pointer needed by jpeg_fill_bit_buffer. */
0N/A j_decompress_ptr cinfo; /* back link to decompress master record */
0N/A} bitread_working_state;
0N/A
0N/A/* Macros to declare and load/save bitread local variables. */
0N/A#define BITREAD_STATE_VARS \
0N/A register bit_buf_type get_buffer; \
0N/A register int bits_left; \
0N/A bitread_working_state br_state
0N/A
0N/A#define BITREAD_LOAD_STATE(cinfop,permstate) \
0N/A br_state.cinfo = cinfop; \
0N/A br_state.next_input_byte = cinfop->src->next_input_byte; \
0N/A br_state.bytes_in_buffer = cinfop->src->bytes_in_buffer; \
0N/A get_buffer = permstate.get_buffer; \
0N/A bits_left = permstate.bits_left;
0N/A
0N/A#define BITREAD_SAVE_STATE(cinfop,permstate) \
0N/A cinfop->src->next_input_byte = br_state.next_input_byte; \
0N/A cinfop->src->bytes_in_buffer = br_state.bytes_in_buffer; \
0N/A permstate.get_buffer = get_buffer; \
0N/A permstate.bits_left = bits_left
0N/A
0N/A/*
0N/A * These macros provide the in-line portion of bit fetching.
0N/A * Use CHECK_BIT_BUFFER to ensure there are N bits in get_buffer
0N/A * before using GET_BITS, PEEK_BITS, or DROP_BITS.
0N/A * The variables get_buffer and bits_left are assumed to be locals,
0N/A * but the state struct might not be (jpeg_huff_decode needs this).
0N/A * CHECK_BIT_BUFFER(state,n,action);
0N/A * Ensure there are N bits in get_buffer; if suspend, take action.
0N/A * val = GET_BITS(n);
0N/A * Fetch next N bits.
0N/A * val = PEEK_BITS(n);
0N/A * Fetch next N bits without removing them from the buffer.
0N/A * DROP_BITS(n);
0N/A * Discard next N bits.
0N/A * The value N should be a simple variable, not an expression, because it
0N/A * is evaluated multiple times.
0N/A */
0N/A
0N/A#define CHECK_BIT_BUFFER(state,nbits,action) \
0N/A { if (bits_left < (nbits)) { \
0N/A if (! jpeg_fill_bit_buffer(&(state),get_buffer,bits_left,nbits)) \
0N/A { action; } \
0N/A get_buffer = (state).get_buffer; bits_left = (state).bits_left; } }
0N/A
0N/A#define GET_BITS(nbits) \
0N/A (((int) (get_buffer >> (bits_left -= (nbits)))) & ((1<<(nbits))-1))
0N/A
0N/A#define PEEK_BITS(nbits) \
0N/A (((int) (get_buffer >> (bits_left - (nbits)))) & ((1<<(nbits))-1))
0N/A
0N/A#define DROP_BITS(nbits) \
0N/A (bits_left -= (nbits))
0N/A
/* 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));