aboutsummaryrefslogtreecommitdiff
path: root/src/nlp.h
diff options
context:
space:
mode:
authordrowe67 <[email protected]>2023-07-20 08:59:48 +0930
committerGitHub <[email protected]>2023-07-20 08:59:48 +0930
commit06d4c11e699b0351765f10398abb4f663a984f36 (patch)
tree33e22af0814c5b6c3d676f096ae8c2ac8a3ed9f0 /src/nlp.h
parent6588e77f38bdebd7adffe091b22e7760d95d0ccb (diff)
parent4d6c143c0abec15e1d6ed1fd95d36f80e6cb7df8 (diff)
Merge pull request #3 from drowe67/dr-cleanup21.2.0
Cleanup Part 2
Diffstat (limited to 'src/nlp.h')
-rw-r--r--src/nlp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nlp.h b/src/nlp.h
index 9e427c2..4b56c4f 100644
--- a/src/nlp.h
+++ b/src/nlp.h
@@ -29,10 +29,11 @@
#define __NLP__
#include "comp.h"
+#include "defines.h"
void *nlp_create(C2CONST *c2const);
void nlp_destroy(void *nlp_state);
-float nlp(void *nlp_state, float Sn[], int n,
- float *pitch_samples, COMP Sw[], float W[], float *prev_f0);
+float nlp(void *nlp_state, float Sn[], int n, float *pitch_samples, COMP Sw[],
+ float W[], float *prev_f0);
#endif