diff options
author | Chris Robinson <[email protected]> | 2014-12-18 09:23:55 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-12-18 09:23:55 -0800 |
commit | c3a36d9b1975df8136c80412cb5ebfde711608d8 (patch) | |
tree | 5d8389b13d81e33bc4dc9c4cb727a31d3e2fd5f3 /Alc/effects/autowah.c | |
parent | 9897fca79407f741c8151a9914b0127d349f4093 (diff) |
Do up to 256 samples at a time with multi-step loops
Diffstat (limited to 'Alc/effects/autowah.c')
-rw-r--r-- | Alc/effects/autowah.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/autowah.c b/Alc/effects/autowah.c index 6f16743d..a444ace3 100644 --- a/Alc/effects/autowah.c +++ b/Alc/effects/autowah.c @@ -85,8 +85,8 @@ static ALvoid ALautowahState_process(ALautowahState *state, ALuint SamplesToDo, for(base = 0;base < SamplesToDo;) { - ALfloat temps[64]; - ALuint td = minu(SamplesToDo-base, 64); + ALfloat temps[256]; + ALuint td = minu(256, SamplesToDo-base); ALfloat gain = state->GainCtrl; for(it = 0;it < td;it++) |