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-11-27 08:00:05 +0300
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2003-11-27 08:00:05 +0300
commit99b852464f4de1d148ae6401502b7c0eb56ada8c (patch)
tree5439649a1b21b3f524fe5bb775984245afe25125 /libspeex/lsp.h
parent5800dfec6f035101ba64a9407d02638d680849e5 (diff)
fixed-point: lsp_enforce_margin argument no longer a float
git-svn-id: http://svn.xiph.org/trunk/speex@5636 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex/lsp.h')
-rw-r--r--libspeex/lsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libspeex/lsp.h b/libspeex/lsp.h
index d23396f..d563c9c 100644
--- a/libspeex/lsp.h
+++ b/libspeex/lsp.h
@@ -53,7 +53,7 @@ int lpc_to_lsp (spx_coef_t *a, int lpcrdr, spx_lsp_t *freq, int nb, float delta,
void lsp_to_lpc(spx_lsp_t *freq, spx_coef_t *ak, int lpcrdr, char *stack);
/*Added by JMV*/
-void lsp_enforce_margin(spx_lsp_t *lsp, int len, float margin);
+void lsp_enforce_margin(spx_lsp_t *lsp, int len, spx_word16_t margin);
void lsp_interpolate(spx_lsp_t *old_lsp, spx_lsp_t *new_lsp, spx_lsp_t *interp_lsp, int len, int subframe, int nb_subframes);