diff options
| author | Nils Wallménius <nils@rockbox.org> | 2010-07-17 10:40:00 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2010-07-17 10:40:00 +0000 |
| commit | 87b29215d5fb77313c8cb9cfe8b3f27ef22ec415 (patch) | |
| tree | 1c4ae7d849870bda7ea7aee6727ef032feb790fd /apps/codecs/libwma/wmadec.h | |
| parent | f98e80367dd743cea937ca1798ed8f2af26848e4 (diff) | |
| download | rockbox-87b29215d5fb77313c8cb9cfe8b3f27ef22ec415.zip rockbox-87b29215d5fb77313c8cb9cfe8b3f27ef22ec415.tar.gz rockbox-87b29215d5fb77313c8cb9cfe8b3f27ef22ec415.tar.bz2 rockbox-87b29215d5fb77313c8cb9cfe8b3f27ef22ec415.tar.xz | |
libwma: Reuse a static buffer that was unused while decoding lsp files for some lsp related tables.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27462 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwma/wmadec.h')
| -rw-r--r-- | apps/codecs/libwma/wmadec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libwma/wmadec.h b/apps/codecs/libwma/wmadec.h index 585e4b0..1f08e65 100644 --- a/apps/codecs/libwma/wmadec.h +++ b/apps/codecs/libwma/wmadec.h @@ -147,8 +147,8 @@ typedef struct WMADecodeContext fixed32 noise_mult; /* XXX: suppress that and integrate it in the noise array */ /* lsp_to_curve tables */ fixed32 lsp_cos_table[BLOCK_MAX_SIZE]; - fixed32 lsp_pow_m_table1[(1 << LSP_POW_BITS)]; - fixed32 lsp_pow_m_table2[(1 << LSP_POW_BITS)]; + fixed32 *lsp_pow_m_table1; + fixed32 *lsp_pow_m_table2; /* State of current superframe decoding */ int bit_offset; |