aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-04-10 09:31:25 -0700
committerChris Robinson <[email protected]>2017-04-10 09:31:25 -0700
commitcc79cb803ad27d92e3e44e89b59c5a6521e06d44 (patch)
tree915b3281bc61f616c1d8ad8752c3dff670a317f2 /Alc
parent8a7bc9ab4f6346fcff4584368d94e7098772ce40 (diff)
Reduce the size of the temp input buffer
Diffstat (limited to 'Alc')
-rw-r--r--Alc/converter.h2
1 files changed, 1 insertions, 1 deletions
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 {