summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/sb_celp.h
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2007-11-06 21:25:46 +0000
committerThom Johansen <thomj@rockbox.org>2007-11-06 21:25:46 +0000
commitd9a9801171d53d12fd5e6df96ae6496056096f7c (patch)
tree06c3992bdc44e3cae82a098e6298408a26cc1449 /apps/codecs/libspeex/sb_celp.h
parent8a7c0eee8aa041ad2f4d825dd925ed5b66d5b84c (diff)
downloadrockbox-d9a9801171d53d12fd5e6df96ae6496056096f7c.tar.gz
rockbox-d9a9801171d53d12fd5e6df96ae6496056096f7c.zip
Smaller and more correctly sized statically allocated arrays in decoder state structs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15500 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libspeex/sb_celp.h')
-rw-r--r--apps/codecs/libspeex/sb_celp.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs/libspeex/sb_celp.h b/apps/codecs/libspeex/sb_celp.h
index da3545d943..1f9b4daae0 100644
--- a/apps/codecs/libspeex/sb_celp.h
+++ b/apps/codecs/libspeex/sb_celp.h
@@ -112,12 +112,12 @@ typedef struct SBDecState {
112 spx_word16_t g0_mem[64], g1_mem[64]; 112 spx_word16_t g0_mem[64], g1_mem[64];
113 113
114 spx_word16_t excBuf[80]; 114 spx_word16_t excBuf[80];
115 spx_lsp_t old_qlsp[10]; 115 spx_lsp_t old_qlsp[8];
116 spx_coef_t interp_qlpc[10]; 116 spx_coef_t interp_qlpc[8];
117 117
118 spx_mem_t mem_sp[20]; 118 spx_mem_t mem_sp[16];
119 spx_word32_t pi_gain[5]; 119 spx_word32_t pi_gain[4];
120 spx_word16_t exc_rms[5]; 120 spx_word16_t exc_rms[4];
121 spx_word16_t *innov_save; /** If non-NULL, innovation is copied here */ 121 spx_word16_t *innov_save; /** If non-NULL, innovation is copied here */
122 122
123 spx_word16_t last_ener; 123 spx_word16_t last_ener;