Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2003-05-14 00:57:31 +0400
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2003-05-14 00:57:31 +0400
commit215be56cdedd811dde84a6bb12b88f7da80d9927 (patch)
treee69f28092bc0fd908785d9d4216e758253d41a4b /libspeex/quant_lsp.h
parent3d663d573270dddc01b36b984cf24f5a4b8d22b1 (diff)
Merged an experimental (and non-standard) 4.8 kbps mode. Note that this
mode is completely independent from the other modes and cannot be used in multi-rate operation. git-svn-id: http://svn.xiph.org/trunk/speex@4701 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex/quant_lsp.h')
-rw-r--r--libspeex/quant_lsp.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libspeex/quant_lsp.h b/libspeex/quant_lsp.h
index d678c39..a624ccb 100644
--- a/libspeex/quant_lsp.h
+++ b/libspeex/quant_lsp.h
@@ -68,4 +68,13 @@ void lsp_quant_high(float *lsp, float *qlsp, int order, SpeexBits *bits);
/* Decodes high-band LSPs */
void lsp_unquant_high(float *lsp, int order, SpeexBits *bits);
+#ifdef EPIC_48K
+/* Quantizes narrowband LSPs with 14 bits */
+void lsp_quant_48k(float *lsp, float *qlsp, int order, SpeexBits *bits);
+
+/* Decodes quantized narrowband LSPs (14 bits) */
+void lsp_unquant_48k(float *lsp, int order, SpeexBits *bits);
+#endif
+
+
#endif