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

github.com/mumble-voip/speexdsp.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-10-08 08:27:52 +0400
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2003-10-08 08:27:52 +0400
commitb958f5641457cf673ab339b3913e99d4e8292f79 (patch)
tree57cfa5ad2ae6c2b8ea3c466b9229be46f86998c2 /libspeex/lsp.h
parentaa17e8e86addf57c0b6e825661afc5c73a8f862c (diff)
first step in fixed-point port, converted the LPC filters
git-svn-id: http://svn.xiph.org/trunk/speex@5410 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex/lsp.h')
-rw-r--r--libspeex/lsp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libspeex/lsp.h b/libspeex/lsp.h
index 1f3b02f..656f9f8 100644
--- a/libspeex/lsp.h
+++ b/libspeex/lsp.h
@@ -47,8 +47,10 @@ Modified by Jean-Marc Valin
#ifndef __AK2LSPD__
#define __AK2LSPD__
-int lpc_to_lsp (float *a, int lpcrdr, float *freq, int nb, float delta, char *stack);
-void lsp_to_lpc(float *freq, float *ak, int lpcrdr, char *stack);
+#include "misc.h"
+
+int lpc_to_lsp (spx_coef_t *a, int lpcrdr, float *freq, int nb, float delta, char *stack);
+void lsp_to_lpc(float *freq, spx_coef_t *ak, int lpcrdr, char *stack);
/*Added by JMV*/
void lsp_enforce_margin(float *lsp, int len, float margin);