diff options
author | Chris Robinson <[email protected]> | 2014-03-23 17:33:57 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-03-23 17:33:57 -0700 |
commit | e2cb41dc61c2cebbd231beac5b6797e245ca619f (patch) | |
tree | c23fa026a2417d062b6e21490d3cd2f1c48010df /OpenAL32 | |
parent | 72986882f549275c6c946b325a9c75b1547f37f1 (diff) |
Remove the last bits of the predictive sample processing
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 7a8aa53c..04514b5e 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -662,9 +662,9 @@ struct ALCdevice_struct ALuint64 ClockBase; ALuint SamplesDone; - /* Temp storage used for mixing. +1 for the predictive sample. */ - ALIGN(16) ALfloat SampleData1[BUFFERSIZE+1]; - ALIGN(16) ALfloat SampleData2[BUFFERSIZE+1]; + /* Temp storage used for mixing. */ + ALIGN(16) ALfloat SampleData1[BUFFERSIZE]; + ALIGN(16) ALfloat SampleData2[BUFFERSIZE]; // Dry path buffer mix ALIGN(16) ALfloat DryBuffer[MaxChannels][BUFFERSIZE]; |