aboutsummaryrefslogtreecommitdiffstats
path: root/core/effects
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-10-12 05:14:00 -0700
committerChris Robinson <[email protected]>2023-10-12 05:14:00 -0700
commit8dad679dd05a8bbd9efd6b4bd2f35fb902133d28 (patch)
tree0e4be81cd8b2b8958b0354435143d5751f6ef932 /core/effects
parenta0819843be860bff54b378eebc2277069041b373 (diff)
Add convolution effect properties to rotate ambisonic responses
Diffstat (limited to 'core/effects')
-rw-r--r--core/effects/base.h6
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;
};