Skip to content

Commit 480d657

Browse files
committed
Fix FileReader initialization
1 parent 14a0ba1 commit 480d657

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

Source/Processors/FileReader/FileReader.cpp

+8-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ FileReader::FileReader() : GenericProcessor ("File Reader"),
5252
playbackActive (true),
5353
gotNewFile (true),
5454
loopPlayback (true),
55-
sampleRateWarningShown (false)
55+
sampleRateWarningShown (false),
56+
firstProcess (false)
5657
{
5758
/* Define a default file location based on OS */
5859
#ifdef __APPLE__
@@ -292,6 +293,8 @@ bool FileReader::setFile (String fullpath, bool shouldUpdateSignalChain)
292293
//Set initial values on time parameters
293294
endTime->setNextValue (TimeParameter::TimeValue (1000 * stopSample / input->getActiveSampleRate()).toString(), false);
294295

296+
firstProcess = false;
297+
295298
return true;
296299
}
297300

@@ -683,7 +686,7 @@ void FileReader::process (AudioBuffer<float>& buffer)
683686
m_samplesPerBuffer.set(samplesNeededPerBuffer);
684687

685688
// Handle buffer switching
686-
if (bufferCacheWindow.get() == 0)
689+
if (firstProcess && bufferCacheWindow.get() == 0)
687690
{
688691
switchBuffer();
689692
}
@@ -721,6 +724,9 @@ void FileReader::process (AudioBuffer<float>& buffer)
721724
// Update buffer window counter
722725
int newWindow = (bufferCacheWindow.get() + 1) % BUFFER_WINDOW_CACHE_SIZE;
723726
bufferCacheWindow.set(newWindow);
727+
728+
if (!firstProcess)
729+
firstProcess = true;
724730
}
725731

726732
void FileReader::addEventsInRange (int64 start, int64 stop)

Source/Processors/FileReader/FileReader.h

+2
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,8 @@ class FileReader : public GenericProcessor,
247247
Atomic<int> bufferCacheWindow;
248248
Atomic<bool> needsBufferReset;
249249

250+
bool firstProcess;
251+
250252
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (FileReader);
251253
};
252254

0 commit comments

Comments
 (0)