diff options
author | Chris Robinson <[email protected]> | 2016-04-19 18:58:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-04-19 18:58:19 -0700 |
commit | 42531703cc1010dd736650024de67ef8ea7d744c (patch) | |
tree | e8eeb5f69d31b3769518d1bcd780f7127d37cc2a /OpenAL32/Include/alMain.h | |
parent | a59332f6221cbb0b0aedae90ff9b2becf464f543 (diff) |
Increase max output channels to 16
This also enables fully periphonic 3rd order HQ decoding.
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 9 |
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; |