Support more than 62 simultaneous VST plugins for Qt<5.10

This commit is contained in:
Dominic Clark
2018-12-02 12:47:05 +00:00
committed by Oskar Wallgren
parent 614bca7f04
commit 9c9290eeeb
2 changed files with 29 additions and 7 deletions

View File

@@ -755,9 +755,15 @@ public:
}
void quit()
void stop()
{
m_quit = true;
quit();
}
void reset()
{
m_quit = false;
}
private:
@@ -864,6 +870,9 @@ private:
QProcess m_process;
ProcessWatcher m_watcher;
QString m_exec;
QStringList m_args;
QMutex m_commMutex;
bool m_splitChannels;
#ifdef USE_QT_SHMEM