From d9a9801171d53d12fd5e6df96ae6496056096f7c Mon Sep 17 00:00:00 2001 From: Thom Johansen Date: Tue, 6 Nov 2007 21:25:46 +0000 Subject: 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 --- apps/codecs/libspeex/sb_celp.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'apps/codecs/libspeex/sb_celp.h') 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 { spx_word16_t g0_mem[64], g1_mem[64]; spx_word16_t excBuf[80]; - spx_lsp_t old_qlsp[10]; - spx_coef_t interp_qlpc[10]; + spx_lsp_t old_qlsp[8]; + spx_coef_t interp_qlpc[8]; - spx_mem_t mem_sp[20]; - spx_word32_t pi_gain[5]; - spx_word16_t exc_rms[5]; + spx_mem_t mem_sp[16]; + spx_word32_t pi_gain[4]; + spx_word16_t exc_rms[4]; spx_word16_t *innov_save; /** If non-NULL, innovation is copied here */ spx_word16_t last_ener; -- cgit v1.2.3