From 20332bce1d49d7285109564d2e29ee18b0acd54e Mon Sep 17 00:00:00 2001 From: Thom Johansen Date: Thu, 31 Aug 2006 18:18:57 +0000 Subject: 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 --- apps/codecs/libmusepack/huffman.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/codecs/libmusepack/huffman.h') diff --git a/apps/codecs/libmusepack/huffman.h b/apps/codecs/libmusepack/huffman.h index 3edbeb7b6e..87fd5c15a4 100644 --- a/apps/codecs/libmusepack/huffman.h +++ b/apps/codecs/libmusepack/huffman.h @@ -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_ -- cgit v1.2.3