aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects/modulator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alc/effects/modulator.cpp')
-rw-r--r--alc/effects/modulator.cpp22
1 files changed, 16 insertions, 6 deletions
diff --git a/alc/effects/modulator.cpp b/alc/effects/modulator.cpp
index 380d9809..735163a4 100644
--- a/alc/effects/modulator.cpp
+++ b/alc/effects/modulator.cpp
@@ -20,21 +20,31 @@
#include "config.h"
-#include <cmath>
-#include <cstdlib>
-
-#include <cmath>
#include <algorithm>
+#include <array>
+#include <cstdlib>
+#include <iterator>
-#include "alcmain.h"
#include "alcontext.h"
+#include "almalloc.h"
+#include "alnumeric.h"
+#include "alspan.h"
+#include "core/ambidefs.h"
+#include "core/bufferline.h"
+#include "core/devformat.h"
+#include "core/device.h"
#include "core/filters/biquad.h"
+#include "core/mixer.h"
+#include "effects/base.h"
#include "effectslot.h"
-#include "vecmat.h"
+#include "intrusive_ptr.h"
+#include "math_defs.h"
namespace {
+using uint = unsigned int;
+
#define MAX_UPDATE_SAMPLES 128
#define WAVEFORM_FRACBITS 24