diff options
Diffstat (limited to 'apps/codecs/libmusepack/huffman.h')
-rw-r--r-- | apps/codecs/libmusepack/huffman.h | 4 |
1 files changed, 2 insertions, 2 deletions
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_ |