40 lines
839 B
Diff
40 lines
839 B
Diff
|
diff --git dsp/src/compressor.h dsp/src/compressor.h
|
||
|
index 2b246be..e6cac5d 100644
|
||
|
--- dsp/src/compressor.h
|
||
|
+++ dsp/src/compressor.h
|
||
|
@@ -26,6 +26,8 @@
|
||
|
|
||
|
#include "geonkick_internal.h"
|
||
|
|
||
|
+#include <pthread.h>
|
||
|
+
|
||
|
struct gkick_compressor {
|
||
|
int enabled;
|
||
|
|
||
|
diff --git dsp/src/distortion.h dsp/src/distortion.h
|
||
|
index 4e42f11..b06e6e5 100644
|
||
|
--- dsp/src/distortion.h
|
||
|
+++ dsp/src/distortion.h
|
||
|
@@ -26,6 +26,8 @@
|
||
|
|
||
|
#include "geonkick_internal.h"
|
||
|
|
||
|
+#include <pthread.h>
|
||
|
+
|
||
|
struct gkick_distortion {
|
||
|
int enabled;
|
||
|
/* Input limiter for distortion. */
|
||
|
diff --git dsp/src/synthesizer.h dsp/src/synthesizer.h
|
||
|
index 303f810..d4d4f9b 100644
|
||
|
--- dsp/src/synthesizer.h
|
||
|
+++ dsp/src/synthesizer.h
|
||
|
@@ -31,6 +31,8 @@
|
||
|
|
||
|
#include <stdatomic.h>
|
||
|
|
||
|
+#include <pthread.h>
|
||
|
+
|
||
|
struct gkick_synth {
|
||
|
atomic_size_t id;
|
||
|
char name[30];
|