summaryrefslogtreecommitdiff
path: root/apps/codecs/libmusepack/huffman.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libmusepack/huffman.h')
-rw-r--r--apps/codecs/libmusepack/huffman.h4
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
46/// Huffman table entry. 46/// Huffman table entry.
47typedef struct huffman_type_t { 47typedef struct huffman_type_t {
48 mpc_uint32_t Code; 48 mpc_uint32_t Code;
49 mpc_uint16_t Length; 49 mpc_uint8_t Length;
50 mpc_int16_t Value; 50 mpc_int8_t Value;
51} HuffmanTyp; 51} HuffmanTyp;
52 52
53#endif // _mpcdec_huffman_h_ 53#endif // _mpcdec_huffman_h_