diff options
author | Chris Robinson <[email protected]> | 2021-04-25 11:36:37 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-04-25 11:36:37 -0700 |
commit | 0fe38c053d8dd827e774fbe0aef121e7aa0a0f28 (patch) | |
tree | aaa18481969ff730ff2c287016644aca03622506 /alc/effects/pshifter.cpp | |
parent | 9b65ca4556611c0b5b582a57d0c7714614badcc0 (diff) |
Move some functions to core
And clean up more includes
Diffstat (limited to 'alc/effects/pshifter.cpp')
-rw-r--r-- | alc/effects/pshifter.cpp | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/alc/effects/pshifter.cpp b/alc/effects/pshifter.cpp index 1cf4861f..5bf813e5 100644 --- a/alc/effects/pshifter.cpp +++ b/alc/effects/pshifter.cpp @@ -20,23 +20,33 @@ #include "config.h" -#include <cmath> -#include <cstdlib> +#include <algorithm> #include <array> +#include <cmath> #include <complex> -#include <algorithm> +#include <cstdlib> +#include <iterator> -#include "alcmain.h" #include "alcomplex.h" -#include "alcontext.h" +#include "almalloc.h" #include "alnumeric.h" -#include "alu.h" +#include "alspan.h" +#include "core/bufferline.h" +#include "core/devformat.h" +#include "core/device.h" +#include "core/mixer.h" +#include "core/mixer/defs.h" +#include "effects/base.h" #include "effectslot.h" +#include "intrusive_ptr.h" #include "math_defs.h" +struct ContextBase; + namespace { +using uint = unsigned int; using complex_d = std::complex<double>; #define STFT_SIZE 1024 |