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/echo.c | |
parent | 9897fca79407f741c8151a9914b0127d349f4093 (diff) |
Do up to 256 samples at a time with multi-step loops
Diffstat (limited to 'Alc/effects/echo.c')
-rw-r--r-- | Alc/effects/echo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/echo.c b/Alc/effects/echo.c index fd85bdb0..b852a096 100644 --- a/Alc/effects/echo.c +++ b/Alc/effects/echo.c @@ -121,8 +121,8 @@ static ALvoid ALechoState_process(ALechoState *state, ALuint SamplesToDo, const for(base = 0;base < SamplesToDo;) { - ALfloat temps[64][2]; - ALuint td = minu(SamplesToDo-base, 64); + ALfloat temps[128][2]; + ALuint td = minu(128, SamplesToDo-base); for(i = 0;i < td;i++) { |