diff options
author | Chris Robinson <[email protected]> | 2018-03-22 07:05:40 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-03-22 07:05:40 -0700 |
commit | 7a23330ffe34c0d04f882fdb45f68733ba49659d (patch) | |
tree | 54da49d0382b96ad9693a5d4051210e4210120fb /Alc/effects | |
parent | 6ea3b5445fc574c8c18ae88d6f853dfb8c14ef1e (diff) |
Move the filter implementation to a separate directory
Diffstat (limited to 'Alc/effects')
-rw-r--r-- | Alc/effects/chorus.c | 2 | ||||
-rw-r--r-- | Alc/effects/dedicated.c | 2 | ||||
-rw-r--r-- | Alc/effects/distortion.c | 2 | ||||
-rw-r--r-- | Alc/effects/echo.c | 1 | ||||
-rw-r--r-- | Alc/effects/equalizer.c | 2 | ||||
-rw-r--r-- | Alc/effects/modulator.c | 2 | ||||
-rw-r--r-- | Alc/effects/pshifter.c | 2 | ||||
-rw-r--r-- | Alc/effects/reverb.c | 3 |
8 files changed, 8 insertions, 8 deletions
diff --git a/Alc/effects/chorus.c b/Alc/effects/chorus.c index 4f8c7ce3..eb0818e3 100644 --- a/Alc/effects/chorus.c +++ b/Alc/effects/chorus.c @@ -24,10 +24,10 @@ #include <stdlib.h> #include "alMain.h" -#include "alFilter.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" +#include "filters/defs.h" static_assert(AL_CHORUS_WAVEFORM_SINUSOID == AL_FLANGER_WAVEFORM_SINUSOID, "Chorus/Flanger waveform value mismatch"); diff --git a/Alc/effects/dedicated.c b/Alc/effects/dedicated.c index b9dd7db3..62a3894f 100644 --- a/Alc/effects/dedicated.c +++ b/Alc/effects/dedicated.c @@ -23,10 +23,10 @@ #include <stdlib.h> #include "alMain.h" -#include "alFilter.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" +#include "filters/defs.h" typedef struct ALdedicatedState { diff --git a/Alc/effects/distortion.c b/Alc/effects/distortion.c index b112032c..09289175 100644 --- a/Alc/effects/distortion.c +++ b/Alc/effects/distortion.c @@ -24,10 +24,10 @@ #include <stdlib.h> #include "alMain.h" -#include "alFilter.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" +#include "filters/defs.h" typedef struct ALdistortionState { diff --git a/Alc/effects/echo.c b/Alc/effects/echo.c index 34010c47..10e00f39 100644 --- a/Alc/effects/echo.c +++ b/Alc/effects/echo.c @@ -28,6 +28,7 @@ #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" +#include "filters/defs.h" typedef struct ALechoState { diff --git a/Alc/effects/equalizer.c b/Alc/effects/equalizer.c index 22db5d54..a5c65cee 100644 --- a/Alc/effects/equalizer.c +++ b/Alc/effects/equalizer.c @@ -24,10 +24,10 @@ #include <stdlib.h> #include "alMain.h" -#include "alFilter.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" +#include "filters/defs.h" /* The document "Effects Extension Guide.pdf" says that low and high * diff --git a/Alc/effects/modulator.c b/Alc/effects/modulator.c index 9ec0d47e..bf8e8fd7 100644 --- a/Alc/effects/modulator.c +++ b/Alc/effects/modulator.c @@ -24,10 +24,10 @@ #include <stdlib.h> #include "alMain.h" -#include "alFilter.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" +#include "filters/defs.h" #define MAX_UPDATE_SAMPLES 128 diff --git a/Alc/effects/pshifter.c b/Alc/effects/pshifter.c index d36597ae..6542be56 100644 --- a/Alc/effects/pshifter.c +++ b/Alc/effects/pshifter.c @@ -24,10 +24,10 @@ #include <stdlib.h> #include "alMain.h" -#include "alFilter.h" #include "alAuxEffectSlot.h" #include "alError.h" #include "alu.h" +#include "filters/defs.h" #define MAX_SIZE 2048 diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c index ff1ee143..cd38b492 100644 --- a/Alc/effects/reverb.c +++ b/Alc/effects/reverb.c @@ -27,10 +27,9 @@ #include "alMain.h" #include "alu.h" #include "alAuxEffectSlot.h" -#include "alEffect.h" -#include "alFilter.h" #include "alListener.h" #include "alError.h" +#include "filters/defs.h" /* This is a user config option for modifying the overall output of the reverb * effect. |