aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-04-19 18:58:19 -0700
committerChris Robinson <[email protected]>2016-04-19 18:58:19 -0700
commit42531703cc1010dd736650024de67ef8ea7d744c (patch)
treee8eeb5f69d31b3769518d1bcd780f7127d37cc2a /OpenAL32
parenta59332f6221cbb0b0aedae90ff9b2becf464f543 (diff)
Increase max output channels to 16
This also enables fully periphonic 3rd order HQ decoding.
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index da4c5567..fba9c012 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -336,6 +336,13 @@ enum Channel {
Aux6,
Aux7,
Aux8,
+ Aux9,
+ Aux10,
+ Aux11,
+ Aux12,
+ Aux13,
+ Aux14,
+ Aux15,
InvalidChannel
};
@@ -368,7 +375,7 @@ enum DevFmtChannels {
DevFmtChannelsDefault = DevFmtStereo
};
-#define MAX_OUTPUT_CHANNELS (9)
+#define MAX_OUTPUT_CHANNELS (16)
ALuint BytesFromDevFmt(enum DevFmtType type) DECL_CONST;
ALuint ChannelsFromDevFmt(enum DevFmtChannels chans) DECL_CONST;