mirror of
https://github.com/RPCS3/soundtouch.git
synced 2024-11-27 21:30:25 +00: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…
Reference in New Issue
Block a user