/* * decdefs.h * * Structures and definitions used by the decoder */ typedef enum { DEC_STATE_UNKNOWN, DEC_STATE_START_NEW_BLOCK, DEC_STATE_DECODING_DATA } decoder_state; /* * Size of uncompressed data chunks */ #define CHUNK_SIZE 32768 /* * Main tree decoding table parameters */ /* # elements in main tree */ #define MAIN_TREE_ELEMENTS (NUM_CHARS+(context->dec_num_position_slots<