summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/sb_celp.h
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2007-11-14 02:15:56 +0000
committerThom Johansen <thomj@rockbox.org>2007-11-14 02:15:56 +0000
commit85b325fdb991a0602a2f16a55fc1df2c303aded1 (patch)
tree6eba0129ce3cc84831b37e2ed64c473d053317ac /apps/codecs/libspeex/sb_celp.h
parent91f618f1ba1e507a9aa1cf7ee87eaf0370272b17 (diff)
downloadrockbox-85b325fdb991a0602a2f16a55fc1df2c303aded1.tar.gz
rockbox-85b325fdb991a0602a2f16a55fc1df2c303aded1.zip
Sync Speex to SVN. Disable stereo compatibility hack since we don't needed it and it produced warnings. Remove unneeded math.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15613 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libspeex/sb_celp.h')
-rw-r--r--apps/codecs/libspeex/sb_celp.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/codecs/libspeex/sb_celp.h b/apps/codecs/libspeex/sb_celp.h
index c4c8160a55..0d171b3f8b 100644
--- a/apps/codecs/libspeex/sb_celp.h
+++ b/apps/codecs/libspeex/sb_celp.h
@@ -51,7 +51,6 @@ typedef struct SBEncState {
51 int windowSize; /**< Length of high-band LPC window*/ 51 int windowSize; /**< Length of high-band LPC window*/
52 int lpcSize; /**< Order of high-band LPC analysis */ 52 int lpcSize; /**< Order of high-band LPC analysis */
53 int first; /**< First frame? */ 53 int first; /**< First frame? */
54 float lag_factor; /**< Lag-windowing control parameter */
55 spx_word16_t lpc_floor; /**< Controls LPC analysis noise floor */ 54 spx_word16_t lpc_floor; /**< Controls LPC analysis noise floor */
56 spx_word16_t gamma1; /**< Perceptual weighting coef 1 */ 55 spx_word16_t gamma1; /**< Perceptual weighting coef 1 */
57 spx_word16_t gamma2; /**< Perceptual weighting coef 2 */ 56 spx_word16_t gamma2; /**< Perceptual weighting coef 2 */
@@ -61,7 +60,7 @@ typedef struct SBEncState {
61 spx_word16_t *h0_mem, *h1_mem; 60 spx_word16_t *h0_mem, *h1_mem;
62 61
63 const spx_word16_t *window; /**< LPC analysis window */ 62 const spx_word16_t *window; /**< LPC analysis window */
64 spx_word16_t *lagWindow; /**< Auto-correlation window */ 63 const spx_word16_t *lagWindow; /**< Auto-correlation window */
65 spx_lsp_t *old_lsp; /**< LSPs of previous frame */ 64 spx_lsp_t *old_lsp; /**< LSPs of previous frame */
66 spx_lsp_t *old_qlsp; /**< Quantized LSPs of previous frame */ 65 spx_lsp_t *old_qlsp; /**< Quantized LSPs of previous frame */
67 spx_coef_t *interp_qlpc; /**< Interpolated quantized LPCs for current sub-frame */ 66 spx_coef_t *interp_qlpc; /**< Interpolated quantized LPCs for current sub-frame */