1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-11-08 12:02:28 +01:00

Fixed uninitialized tempo variable bug

This commit is contained in:
oparviai 2008-02-17 13:15:45 +00:00
parent b0b5bf8232
commit 365531fa15

View File

@ -94,8 +94,8 @@ TDStretch::TDStretch() : FIFOProcessor(&outputBuffer)
pRefMidBufferUnaligned = NULL; pRefMidBufferUnaligned = NULL;
overlapLength = 0; overlapLength = 0;
tempo = 1.0f;
setParameters(44100, DEFAULT_SEQUENCE_MS, DEFAULT_SEEKWINDOW_MS, DEFAULT_OVERLAP_MS); setParameters(44100, DEFAULT_SEQUENCE_MS, DEFAULT_SEEKWINDOW_MS, DEFAULT_OVERLAP_MS);
setTempo(1.0f); setTempo(1.0f);
} }