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:
authorjmvalin <jmvalin@0101bb08-14d6-0310-b084-bc0e0c8e3800>2002-03-05 20:02:24 +0300
committerjmvalin <jmvalin@0101bb08-14d6-0310-b084-bc0e0c8e3800>2002-03-05 20:02:24 +0300
commit339c2f5c213f366414b82f097b2e1c0712c693e6 (patch)
tree7b1273a9be33fbb367805f2c3eb60d407fb8fe22 /libspeex/lsp.h
parent551b71b32da56b3d09cbdb9a2b67f988e2be98fb (diff)
Big cleanup... filter memories, stack allocation, ...
git-svn-id: http://svn.xiph.org/trunk/speex@3122 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex/lsp.h')
-rw-r--r--libspeex/lsp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libspeex/lsp.h b/libspeex/lsp.h
index a800446..b0e6993 100644
--- a/libspeex/lsp.h
+++ b/libspeex/lsp.h
@@ -11,7 +11,7 @@
#ifndef __AK2LSPD__
#define __AK2LSPD__
-int lpc_to_lsp (float *a, int lpcrdr, float *freq, int nb, float delta);
-void lsp_to_lpc(float *freq, float *ak, int lpcrdr);
+int lpc_to_lsp (float *a, int lpcrdr, float *freq, int nb, float delta, float *stack);
+void lsp_to_lpc(float *freq, float *ak, int lpcrdr, float *stack);
#endif /* __AK2LSPD__ */