mirror of
https://github.com/azahar-emu/soundtouch
synced 2025-11-07 07:30:02 +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…
x
Reference in New Issue
Block a user