Changeset 382 for libmpc/trunk/libmpcdec
- Timestamp:
- 03/06/08 16:39:07 (17 years ago)
- Location:
- libmpc/trunk/libmpcdec
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/libmpcdec/huffman.h
r296 r382 65 65 /// Type used for huffman LUT decoding 66 66 typedef struct mpc_lut_data_t { 67 const mpc_huffman *table;67 mpc_huffman const * const table; 68 68 mpc_huff_lut lut[1 << LUT_DEPTH]; 69 69 } mpc_lut_data; … … 71 71 /// Type used for canonical huffman decoding 72 72 typedef 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; 75 75 mpc_huff_lut lut[1 << LUT_DEPTH]; 76 76 } mpc_can_data; -
libmpc/trunk/libmpcdec/streaminfo.c
r350 r382 46 46 47 47 static const char na[] = "n.a."; 48 static c onst char *versionNames[] = {48 static char const * const versionNames[] = { 49 49 na, "'Unstable/Experimental'", na, na, na, "'quality 0'", "'quality 1'", 50 50 "'Telephone'", "'Thumb'", "'Radio'", "'Standard'", "'Extreme'", "'Insane'",
Note: See TracChangeset
for help on using the changeset viewer.