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:
authorjmvalin <jmvalin@0101bb08-14d6-0310-b084-bc0e0c8e3800>2002-03-13 03:31:48 +0300
committerjmvalin <jmvalin@0101bb08-14d6-0310-b084-bc0e0c8e3800>2002-03-13 03:31:48 +0300
commit9db812ae2e2320a17a8716615b7460994c2321bd (patch)
tree47d6d7085e04364b0e6c044186dd9711a3e08e05 /libspeex/quant_lsp.h
parent77b23be33fca96bc2180d754f3698afc95b3ee27 (diff)
Code cleanup, removed warnings
git-svn-id: http://svn.xiph.org/trunk/speex@3135 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex/quant_lsp.h')
-rw-r--r--libspeex/quant_lsp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libspeex/quant_lsp.h b/libspeex/quant_lsp.h
index 9699e21..8c00189 100644
--- a/libspeex/quant_lsp.h
+++ b/libspeex/quant_lsp.h
@@ -20,6 +20,8 @@
#ifndef QUANT_LSP_H
#define QUANT_LSP_H
+#include "bits.h"
+
#define MAX_LSP_SIZE 20
#define NB_CDBK_SIZE 64
@@ -36,9 +38,9 @@ extern float cdbk_nb_high1[];
extern float cdbk_nb_high2[];
/* Quantizes narrowband LSPs with 30 bits */
-unsigned long long lsp_quant_nb(float *lsp, int order);
+void lsp_quant_nb(float *lsp, float *qlsp, int order, FrameBits *bits);
/* Decodes quantized narrowband LSPs */
-void lsp_unquant_nb(float *lsp, int order, unsigned long long id);
+void lsp_unquant_nb(float *lsp, int order, FrameBits *bits);
#endif