aboutsummaryrefslogtreecommitdiffstats
path: root/core/device.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-10-24 11:51:39 -0700
committerChris Robinson <[email protected]>2021-10-24 11:51:39 -0700
commit49a36334bd8255094d780ffb78cce75135190533 (patch)
tree9abef164c0f597d945b1576e2bc6f1c6f240ec15 /core/device.h
parent096bed35fabf4d912ae62809cecb3819d2b91e5f (diff)
Use a tri-state optional for the stereo output mode
Diffstat (limited to 'core/device.h')
-rw-r--r--core/device.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/device.h b/core/device.h
index 5e2a3bfd..88d146aa 100644
--- a/core/device.h
+++ b/core/device.h
@@ -57,6 +57,12 @@ enum class RenderMode : unsigned char {
Hrtf
};
+enum class StereoEncoding : unsigned char {
+ Normal,
+ Uhj,
+ Hrtf
+};
+
struct InputRemixMap {
struct TargetMix { Channel channel; float mix; };