diff options
| author | Thom Johansen <thomj@rockbox.org> | 2007-10-19 21:10:25 +0000 |
|---|---|---|
| committer | Thom Johansen <thomj@rockbox.org> | 2007-10-19 21:10:25 +0000 |
| commit | 56db5597548d0e9b9733b556a5c14ab4e38547e6 (patch) | |
| tree | 8846e7d3a15f264853e6ee238994e3522e3bcc5a /apps/codecs/libspeex/quant_lsp.c | |
| parent | 6dc3a743addde6146b736ec5e1c71159c2150f95 (diff) | |
| download | rockbox-56db5597548d0e9b9733b556a5c14ab4e38547e6.zip rockbox-56db5597548d0e9b9733b556a5c14ab4e38547e6.tar.gz rockbox-56db5597548d0e9b9733b556a5c14ab4e38547e6.tar.bz2 rockbox-56db5597548d0e9b9733b556a5c14ab4e38547e6.tar.xz | |
Sync Speex to SVN. Add new header file to adapt to Speex' new way of doing wrapper functions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15209 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libspeex/quant_lsp.c')
| -rw-r--r-- | apps/codecs/libspeex/quant_lsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libspeex/quant_lsp.c b/apps/codecs/libspeex/quant_lsp.c index 472efa9..b2f4f85 100644 --- a/apps/codecs/libspeex/quant_lsp.c +++ b/apps/codecs/libspeex/quant_lsp.c @@ -304,11 +304,11 @@ void lsp_unquant_lbr(spx_lsp_t *lsp, int order, SpeexBits *bits) #ifdef DISABLE_WIDEBAND void lsp_quant_high(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits) { - speex_error("Wideband and Ultra-wideband are disabled"); + speex_fatal("Wideband and Ultra-wideband are disabled"); } void lsp_unquant_high(spx_lsp_t *lsp, int order, SpeexBits *bits) { - speex_error("Wideband and Ultra-wideband are disabled"); + speex_fatal("Wideband and Ultra-wideband are disabled"); } #else extern const signed char high_lsp_cdbk[]; |