mirror of
https://github.com/azahar-emu/soundtouch
synced 2025-11-06 23:20:03 +01:00
Bugfix: FIR filter went too far in processing buffer - this is incorrect although it didn't cause any change to the outcome.
This commit is contained in:
parent
df36315991
commit
1e11629a8f
@ -270,7 +270,7 @@ uint FIRFilterMMX::evaluateFilterStereo(short *dest, const short *src, uint numS
|
||||
|
||||
if (length < 2) return 0;
|
||||
|
||||
for (i = 0; i < numSamples / 2; i ++)
|
||||
for (i = 0; i < (numSamples - length) / 2; i ++)
|
||||
{
|
||||
__m64 accu1;
|
||||
__m64 accu2;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user