aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-03-23 17:33:57 -0700
committerChris Robinson <[email protected]>2014-03-23 17:33:57 -0700
commite2cb41dc61c2cebbd231beac5b6797e245ca619f (patch)
treec23fa026a2417d062b6e21490d3cd2f1c48010df /OpenAL32
parent72986882f549275c6c946b325a9c75b1547f37f1 (diff)
Remove the last bits of the predictive sample processing
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h6
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];