summaryrefslogtreecommitdiff
path: root/apps/codecs/libwma/wmadec.h
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2007-08-02 04:47:33 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2007-08-02 04:47:33 +0000
commit206e883e78fe6bb5d65b150b757d7a9af76f472e (patch)
tree424b5c80c9ebe6f587dbd3bb93fcdb59b6374140 /apps/codecs/libwma/wmadec.h
parent66029a58aeac41340f57d6b6c4f5c79eae04cc4a (diff)
downloadrockbox-206e883e78fe6bb5d65b150b757d7a9af76f472e.tar.gz
rockbox-206e883e78fe6bb5d65b150b757d7a9af76f472e.zip
Initial attept at supporting Line Spectral Pairs. Various issues remain, and the ffmpeg decoder itself often fails on certain valid LSP files. Expect some issues.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14134 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwma/wmadec.h')
-rw-r--r--apps/codecs/libwma/wmadec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libwma/wmadec.h b/apps/codecs/libwma/wmadec.h
index a3e4acdc94..8ae49eed0c 100644
--- a/apps/codecs/libwma/wmadec.h
+++ b/apps/codecs/libwma/wmadec.h
@@ -153,8 +153,8 @@ typedef struct WMADecodeContext
153 /* lsp_to_curve tables */ 153 /* lsp_to_curve tables */
154 fixed32 lsp_cos_table[BLOCK_MAX_SIZE]; 154 fixed32 lsp_cos_table[BLOCK_MAX_SIZE];
155 fixed64 lsp_pow_e_table[256]; 155 fixed64 lsp_pow_e_table[256];
156 fixed64 lsp_pow_m_table1[(1 << LSP_POW_BITS)]; 156 fixed32 lsp_pow_m_table1[(1 << LSP_POW_BITS)];
157 fixed64 lsp_pow_m_table2[(1 << LSP_POW_BITS)]; 157 fixed32 lsp_pow_m_table2[(1 << LSP_POW_BITS)];
158 158
159 /* State of current superframe decoding */ 159 /* State of current superframe decoding */
160 int bit_offset; 160 int bit_offset;