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/vmorpher.cpp | |
parent | 9b65ca4556611c0b5b582a57d0c7714614badcc0 (diff) |
Move some functions to core
And clean up more includes
Diffstat (limited to 'alc/effects/vmorpher.cpp')
-rw-r--r-- | alc/effects/vmorpher.cpp | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/alc/effects/vmorpher.cpp b/alc/effects/vmorpher.cpp index 332df159..f3ed7aad 100644 --- a/alc/effects/vmorpher.cpp +++ b/alc/effects/vmorpher.cpp @@ -20,20 +20,31 @@ #include "config.h" -#include <cmath> -#include <cstdlib> #include <algorithm> +#include <array> +#include <cstdlib> #include <functional> +#include <iterator> -#include "alcmain.h" #include "alcontext.h" -#include "alu.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/mixer.h" +#include "effects/base.h" #include "effectslot.h" +#include "intrusive_ptr.h" #include "math_defs.h" namespace { +using uint = unsigned int; + #define MAX_UPDATE_SAMPLES 256 #define NUM_FORMANTS 4 #define NUM_FILTERS 2 |