diff options
| author | Dan Everton <dan@iocaine.org> | 2007-03-12 11:54:07 +0000 |
|---|---|---|
| committer | Dan Everton <dan@iocaine.org> | 2007-03-12 11:54:07 +0000 |
| commit | 879070f89e004be03cef53ad7f61610e02e7aa00 (patch) | |
| tree | eccbcce2722da50eb473c78cf9ce16fad6602c00 /apps/codecs/libspeex/sb_celp.h | |
| parent | 19bba742e789e669d4cfc15ed3a5cef4aa64199d (diff) | |
| download | rockbox-879070f89e004be03cef53ad7f61610e02e7aa00.zip rockbox-879070f89e004be03cef53ad7f61610e02e7aa00.tar.gz rockbox-879070f89e004be03cef53ad7f61610e02e7aa00.tar.bz2 rockbox-879070f89e004be03cef53ad7f61610e02e7aa00.tar.xz | |
* Clean up speex.c a little.
* Sync to Speex SVN 12735 which includes some of our warnings fixes.
* Move decoder output to IRAM. Not much perfomance gain though.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12735 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libspeex/sb_celp.h')
| -rw-r--r-- | apps/codecs/libspeex/sb_celp.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/apps/codecs/libspeex/sb_celp.h b/apps/codecs/libspeex/sb_celp.h index 35997cb..a0dc3af 100644 --- a/apps/codecs/libspeex/sb_celp.h +++ b/apps/codecs/libspeex/sb_celp.h @@ -63,18 +63,9 @@ typedef struct SBEncState { const spx_word16_t *window; /**< LPC analysis window */ spx_word16_t *lagWindow; /**< Auto-correlation window */ - spx_word16_t *autocorr; /**< Auto-correlation (for LPC analysis) */ - spx_coef_t *lpc; /**< LPC coefficients */ - spx_lsp_t *lsp; /**< LSP coefficients */ - spx_lsp_t *qlsp; /**< Quantized LSPs */ spx_lsp_t *old_lsp; /**< LSPs of previous frame */ spx_lsp_t *old_qlsp; /**< Quantized LSPs of previous frame */ - spx_lsp_t *interp_lsp; /**< Interpolated LSPs for current sub-frame */ - spx_lsp_t *interp_qlsp; /**< Interpolated quantized LSPs for current sub-frame */ - spx_coef_t *interp_lpc; /**< Interpolated LPCs for current sub-frame */ spx_coef_t *interp_qlpc; /**< Interpolated quantized LPCs for current sub-frame */ - spx_coef_t *bw_lpc1; /**< Bandwidth-expanded version of LPCs (#1) */ - spx_coef_t *bw_lpc2; /**< Bandwidth-expanded version of LPCs (#2) */ spx_mem_t *mem_sp; /**< Synthesis signal memory */ spx_mem_t *mem_sp2; @@ -121,9 +112,7 @@ typedef struct SBDecState { spx_word32_t *g0_mem, *g1_mem; spx_word16_t *excBuf; - spx_lsp_t *qlsp; spx_lsp_t *old_qlsp; - spx_lsp_t *interp_qlsp; spx_coef_t *interp_qlpc; spx_mem_t *mem_sp; |