diff options
Diffstat (limited to 'Alc/effects')
-rw-r--r-- | Alc/effects/autowah.cpp | 1 | ||||
-rw-r--r-- | Alc/effects/chorus.cpp | 1 | ||||
-rw-r--r-- | Alc/effects/compressor.cpp | 8 | ||||
-rw-r--r-- | Alc/effects/dedicated.cpp | 2 | ||||
-rw-r--r-- | Alc/effects/distortion.cpp | 1 | ||||
-rw-r--r-- | Alc/effects/echo.cpp | 1 | ||||
-rw-r--r-- | Alc/effects/equalizer.cpp | 1 | ||||
-rw-r--r-- | Alc/effects/fshifter.cpp | 2 | ||||
-rw-r--r-- | Alc/effects/modulator.cpp | 1 | ||||
-rw-r--r-- | Alc/effects/null.cpp | 2 | ||||
-rw-r--r-- | Alc/effects/pshifter.cpp | 2 | ||||
-rw-r--r-- | Alc/effects/reverb.cpp | 1 |
12 files changed, 17 insertions, 6 deletions
diff --git a/Alc/effects/autowah.cpp b/Alc/effects/autowah.cpp index b4ef8f3c..e2f07b6f 100644 --- a/Alc/effects/autowah.cpp +++ b/Alc/effects/autowah.cpp @@ -24,6 +24,7 @@ #include <stdlib.h> #include "alMain.h" +#include "alcontext.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" diff --git a/Alc/effects/chorus.cpp b/Alc/effects/chorus.cpp index b658098e..411ba6a5 100644 --- a/Alc/effects/chorus.cpp +++ b/Alc/effects/chorus.cpp @@ -24,6 +24,7 @@ #include <stdlib.h> #include "alMain.h" +#include "alcontext.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" diff --git a/Alc/effects/compressor.cpp b/Alc/effects/compressor.cpp index 0a307a5f..5603deea 100644 --- a/Alc/effects/compressor.cpp +++ b/Alc/effects/compressor.cpp @@ -18,13 +18,15 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include <stdlib.h> -#include "config.h" -#include "alError.h" #include "alMain.h" -#include "alAuxEffectSlot.h" +#include "alcontext.h" #include "alu.h" +#include "alAuxEffectSlot.h" +#include "alError.h" #define AMP_ENVELOPE_MIN 0.5f diff --git a/Alc/effects/dedicated.cpp b/Alc/effects/dedicated.cpp index dd250e64..705f7d41 100644 --- a/Alc/effects/dedicated.cpp +++ b/Alc/effects/dedicated.cpp @@ -23,10 +23,10 @@ #include <stdlib.h> #include "alMain.h" +#include "alcontext.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" -#include "filters/defs.h" struct ALdedicatedState final : public ALeffectState { diff --git a/Alc/effects/distortion.cpp b/Alc/effects/distortion.cpp index 75629d9c..7dd15981 100644 --- a/Alc/effects/distortion.cpp +++ b/Alc/effects/distortion.cpp @@ -24,6 +24,7 @@ #include <stdlib.h> #include "alMain.h" +#include "alcontext.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" diff --git a/Alc/effects/echo.cpp b/Alc/effects/echo.cpp index f987e582..492da6f6 100644 --- a/Alc/effects/echo.cpp +++ b/Alc/effects/echo.cpp @@ -24,6 +24,7 @@ #include <stdlib.h> #include "alMain.h" +#include "alcontext.h" #include "alFilter.h" #include "alAuxEffectSlot.h" #include "alError.h" diff --git a/Alc/effects/equalizer.cpp b/Alc/effects/equalizer.cpp index 8388a123..48c6d1e2 100644 --- a/Alc/effects/equalizer.cpp +++ b/Alc/effects/equalizer.cpp @@ -24,6 +24,7 @@ #include <stdlib.h> #include "alMain.h" +#include "alcontext.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" diff --git a/Alc/effects/fshifter.cpp b/Alc/effects/fshifter.cpp index 304e281f..f112c4c7 100644 --- a/Alc/effects/fshifter.cpp +++ b/Alc/effects/fshifter.cpp @@ -27,10 +27,10 @@ #include <algorithm> #include "alMain.h" +#include "alcontext.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" -#include "filters/defs.h" #include "alcomplex.h" diff --git a/Alc/effects/modulator.cpp b/Alc/effects/modulator.cpp index 19513add..7e8f8ce4 100644 --- a/Alc/effects/modulator.cpp +++ b/Alc/effects/modulator.cpp @@ -24,6 +24,7 @@ #include <stdlib.h> #include "alMain.h" +#include "alcontext.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" diff --git a/Alc/effects/null.cpp b/Alc/effects/null.cpp index 377593ab..0d85d505 100644 --- a/Alc/effects/null.cpp +++ b/Alc/effects/null.cpp @@ -4,7 +4,9 @@ #include "AL/al.h" #include "AL/alc.h" + #include "alMain.h" +#include "alcontext.h" #include "alAuxEffectSlot.h" #include "alError.h" diff --git a/Alc/effects/pshifter.cpp b/Alc/effects/pshifter.cpp index f0cdf53e..1199a19d 100644 --- a/Alc/effects/pshifter.cpp +++ b/Alc/effects/pshifter.cpp @@ -27,10 +27,10 @@ #include <algorithm> #include "alMain.h" +#include "alcontext.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" -#include "filters/defs.h" #include "alcomplex.h" diff --git a/Alc/effects/reverb.cpp b/Alc/effects/reverb.cpp index 5cfc0012..fe9cc9f7 100644 --- a/Alc/effects/reverb.cpp +++ b/Alc/effects/reverb.cpp @@ -25,6 +25,7 @@ #include <math.h> #include "alMain.h" +#include "alcontext.h" #include "alu.h" #include "alAuxEffectSlot.h" #include "alListener.h" |