mirror of
https://github.com/RPCS3/soundtouch.git
synced 2024-11-10 04:42:50 +01:00
Bugfix in RateTransposerFloat::transposeMono
This commit is contained in:
parent
70d7518295
commit
510ac08657
@ -608,8 +608,8 @@ int RateTransposerFloat::transposeMono(SAMPLETYPE *dest, const SAMPLETYPE *src,
|
||||
{
|
||||
int i, remain;
|
||||
|
||||
remain = 0;
|
||||
i = 0;
|
||||
remain = nSamples - 1;
|
||||
i = 0;
|
||||
|
||||
// Process the last sample saved from the previous call first...
|
||||
while (fSlopeCount <= 1.0f)
|
||||
|
Loading…
Reference in New Issue
Block a user