summaryrefslogtreecommitdiff
path: root/gr-vocoder/lib/codec2/nlp.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-vocoder/lib/codec2/nlp.h')
-rw-r--r--gr-vocoder/lib/codec2/nlp.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gr-vocoder/lib/codec2/nlp.h b/gr-vocoder/lib/codec2/nlp.h
index 5e11f1186e..6e03236c00 100644
--- a/gr-vocoder/lib/codec2/nlp.h
+++ b/gr-vocoder/lib/codec2/nlp.h
@@ -30,10 +30,9 @@
#include "comp.h"
-void *nlp_create();
+void *nlp_create(int m);
void nlp_destroy(void *nlp_state);
-float nlp(void *nlp_state, float Sn[], int n, int m, int pmin, int pmax,
- float *pitch, COMP Sw[], float *prev_Wo);
-float test_candidate_mbe(COMP Sw[], float f0, COMP Sw_[]);
+float nlp(void *nlp_state, float Sn[], int n, int pmin, int pmax,
+ float *pitch, COMP Sw[], COMP W[], float *prev_Wo);
#endif