From cc79cb803ad27d92e3e44e89b59c5a6521e06d44 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 10 Apr 2017 09:31:25 -0700 Subject: [PATCH] Reduce the size of the temp input buffer --- Alc/converter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alc/converter.h b/Alc/converter.h index 76b2520f..51d579b5 100644 --- a/Alc/converter.h +++ b/Alc/converter.h @@ -21,7 +21,7 @@ typedef struct SampleConverter { ALsizei mIncrement; ResamplerFunc mResample; - alignas(16) ALfloat mSrcSamples[BUFFERSIZE+MAX_PRE_SAMPLES+MAX_POST_SAMPLES]; + alignas(16) ALfloat mSrcSamples[BUFFERSIZE]; alignas(16) ALfloat mDstSamples[BUFFERSIZE]; struct { -- 2.11.4.GIT