Skip to content
Snippets Groups Projects
Commit dd8692ac authored by Aaron Cuevas Lopez's avatar Aaron Cuevas Lopez
Browse files

Add mutex to Lfp display to avoid synchronization issues

parent 01b8e351
No related branches found
No related tags found
No related merge requests found
......@@ -658,6 +658,8 @@ void LfpDisplayCanvas::updateScreenBuffer()
// copy new samples from the displayBuffer into the screenBuffer
int maxSamples = lfpDisplay->getWidth() - leftmargin;
ScopedLock displayLock(*processor->getMutex());
for (int channel = 0; channel <= nChans; channel++) // pull one extra channel for event display
{
......
......@@ -297,6 +297,8 @@ void LfpDisplayNode::process(AudioSampleBuffer& buffer, MidiBuffer& events)
checkForEvents(events); // see if we got any TTL events
ScopedLock displayLock(displayMutex);
for (int chan = 0; chan < buffer.getNumChannels(); chan++)
{
int samplesLeft = displayBuffer->getNumSamples() - displayBufferIndex[chan];
......
......@@ -75,6 +75,11 @@ public:
return displayBufferIndex[chan];
}
CriticalSection* getMutex()
{
return &displayMutex;
}
private:
void initializeEventChannels();
......@@ -99,6 +104,8 @@ private:
bool resizeBuffer();
CriticalSection displayMutex;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(LfpDisplayNode);
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment