1
0
Fork 0
forked from len0rd/rockbox

FS patch #5172 by Andrew Cupper. Musepack seeking support. Decoder should also be faster.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10827 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2006-08-31 18:18:57 +00:00
parent 6af8603d9a
commit 20332bce1d
9 changed files with 842 additions and 258 deletions

View file

@ -46,8 +46,8 @@ struct mpc_decoder_t; // forward declare to break circular dependencies
/// Huffman table entry.
typedef struct huffman_type_t {
mpc_uint32_t Code;
mpc_uint16_t Length;
mpc_int16_t Value;
mpc_uint8_t Length;
mpc_int8_t Value;
} HuffmanTyp;
#endif // _mpcdec_huffman_h_