summaryrefslogtreecommitdiff
path: root/gr-vocoder/lib/codec2/nlp.h
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2014-04-21 09:41:31 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2014-04-21 09:41:31 -0700
commit33e5aeb722ba4fc1c2ae3162c4940b546037717f (patch)
treec3f1e57feeab5ea07e0bc5d7d56791c881f457b7 /gr-vocoder/lib/codec2/nlp.h
parenta3998949d9c65076d91e3165733a5abd381ad882 (diff)
parent5efae492bb690e8e92fe18fb0abe0aff345c3935 (diff)
Merge branch 'merge-codec2-update'
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