diff options
author | Chris Robinson <[email protected]> | 2023-10-12 05:14:00 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-10-12 05:14:00 -0700 |
commit | 8dad679dd05a8bbd9efd6b4bd2f35fb902133d28 (patch) | |
tree | 0e4be81cd8b2b8958b0354435143d5751f6ef932 /core/effects | |
parent | a0819843be860bff54b378eebc2277069041b373 (diff) |
Add convolution effect properties to rotate ambisonic responses
Diffstat (limited to 'core/effects')
-rw-r--r-- | core/effects/base.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/effects/base.h b/core/effects/base.h index b02d33b7..83df7cf0 100644 --- a/core/effects/base.h +++ b/core/effects/base.h @@ -1,6 +1,7 @@ #ifndef CORE_EFFECTS_BASE_H #define CORE_EFFECTS_BASE_H +#include <array> #include <stddef.h> #include "almalloc.h" @@ -165,6 +166,11 @@ union EffectProps { struct { float Gain; } Dedicated; + + struct { + std::array<float,3> OrientAt; + std::array<float,3> OrientUp; + } Convolution; }; |