MCPcopy Create free account
hub / github.com/LMMS/lmms / stopProcessing

Method stopProcessing

src/core/Mixer.cpp:243–259  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

241
242
243void Mixer::stopProcessing()
244{
245 m_isProcessing = false;
246
247 if( m_fifoWriter != NULL )
248 {
249 m_fifoWriter->finish();
250 m_fifoWriter->wait();
251 m_audioDev->stopProcessing();
252 delete m_fifoWriter;
253 m_fifoWriter = NULL;
254 }
255 else
256 {
257 m_audioDev->stopProcessing();
258 }
259}
260
261
262

Callers 2

destroyMethod · 0.45
runMethod · 0.45

Calls 2

finishMethod · 0.80
waitMethod · 0.45

Tested by

no test coverage detected