Ignore:
Timestamp:
03/06/08 16:39:07 (16 years ago)
Author:
r2d
Message:

made some const changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/libmpcdec/huffman.h

    r296 r382  
    6565/// Type used for huffman LUT decoding
    6666typedef struct mpc_lut_data_t {
    67         const mpc_huffman * table;
     67        mpc_huffman const * const table;
    6868        mpc_huff_lut lut[1 << LUT_DEPTH];
    6969} mpc_lut_data;
     
    7171/// Type used for canonical huffman decoding
    7272typedef struct mpc_can_data_t {
    73         const mpc_huffman * table;
    74         const mpc_int8_t * sym;
     73        mpc_huffman const * const table;
     74        mpc_int8_t const * const sym;
    7575        mpc_huff_lut lut[1 << LUT_DEPTH];
    7676} mpc_can_data;
Note: See TracChangeset for help on using the changeset viewer.