1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

BufferingAudioReader: Don't pre-read chunks in constructor

This commit is contained in:
ed 2021-04-07 17:11:10 +01:00
parent b3bdfdb34c
commit b17ca5200a

View file

@ -40,9 +40,6 @@ BufferingAudioReader::BufferingAudioReader (AudioFormatReader* sourceReader,
bitsPerSample = 32;
usesFloatingPointData = true;
for (int i = 3; --i >= 0;)
readNextBufferChunk();
timeSliceThread.addTimeSliceClient (this);
}