From 01dd34f305b9ad2c8e6bf0642cd976f9788fdf3a Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 11 Dec 2021 17:50:24 -0800 Subject: Add an internal Super Stereo format It's not available as an AL buffer format (yet) since I'm not sure how to expose it. Internally it seems fine as a separate channel configuration, but because OpenAL combines the channel configuration and sample type, a flag may work better there. --- core/buffer_storage.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'core/buffer_storage.cpp') diff --git a/core/buffer_storage.cpp b/core/buffer_storage.cpp index 5179db13..1c80e7ef 100644 --- a/core/buffer_storage.cpp +++ b/core/buffer_storage.cpp @@ -36,6 +36,7 @@ uint ChannelsFromFmt(FmtChannels chans, uint ambiorder) noexcept case FmtUHJ2: return 2; case FmtUHJ3: return 3; case FmtUHJ4: return 4; + case FmtSuperStereo: return 2; } return 0; } -- cgit v1.2.3