diff options
author | Chris Robinson <[email protected]> | 2019-05-28 16:22:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-28 16:22:36 -0700 |
commit | c80ee5b7014d12675e2c615574c9f3f3354ffd1b (patch) | |
tree | 75ac5c7197ab7d8994854455c7261a9d42a99c82 /OpenAL32/Include/alu.h | |
parent | 7ce2b632f51292c26014ad2efeb4b5429c3bf04f (diff) |
Use std::array for most mixing buffer arrays
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 642aeddc..327adfc0 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -263,7 +263,7 @@ struct ALvoice { int FilterType; DirectParams Params[MAX_INPUT_CHANNELS]; - ALfloat (*Buffer)[BUFFERSIZE]; + FloatBufferLine *Buffer; ALsizei Channels; ALsizei ChannelsPerOrder[MAX_AMBI_ORDER+1]; } mDirect; @@ -272,7 +272,7 @@ struct ALvoice { int FilterType; SendParams Params[MAX_INPUT_CHANNELS]; - ALfloat (*Buffer)[BUFFERSIZE]; + FloatBufferLine *Buffer; ALsizei Channels; }; al::FlexArray<SendData> mSend; |