From e2cb41dc61c2cebbd231beac5b6797e245ca619f Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 23 Mar 2014 17:33:57 -0700 Subject: Remove the last bits of the predictive sample processing --- OpenAL32/Include/alMain.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenAL32/Include/alMain.h') 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]; -- cgit v1.2.3