commit ac7c0ee3fa7e926f5413302c0d9a6f116c9b4fdf
parent 487bf25008d1523db086364a0830c0cac7201825
Author: falkTX <falktx@falktx.com>
Date: Fri, 19 Aug 2022 01:00:14 +0100
Fix selftest build
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/distrho/src/DistrhoPluginJACK.cpp b/distrho/src/DistrhoPluginJACK.cpp
@@ -813,7 +813,7 @@ bool runSelfTests()
{
d_nextBufferSize = 512;
d_nextSampleRate = 44100.0;
- PluginExporter plugin(nullptr, nullptr, nullptr);
+ PluginExporter plugin(nullptr, nullptr, nullptr, nullptr);
d_nextBufferSize = 0;
d_nextSampleRate = 0.0;
}
@@ -824,7 +824,7 @@ bool runSelfTests()
// simple processing
{
- PluginExporter plugin(nullptr, nullptr, nullptr);
+ PluginExporter plugin(nullptr, nullptr, nullptr, nullptr);
plugin.activate();
plugin.deactivate();
plugin.setBufferSize(128);
@@ -850,9 +850,9 @@ bool runSelfTests()
// multi-threaded processing with UI
{
- PluginExporter pluginA(nullptr, nullptr, nullptr);
- PluginExporter pluginB(nullptr, nullptr, nullptr);
- PluginExporter pluginC(nullptr, nullptr, nullptr);
+ PluginExporter pluginA(nullptr, nullptr, nullptr, nullptr);
+ PluginExporter pluginB(nullptr, nullptr, nullptr, nullptr);
+ PluginExporter pluginC(nullptr, nullptr, nullptr, nullptr);
PluginProcessTestingThread procTestA(pluginA);
PluginProcessTestingThread procTestB(pluginB);
PluginProcessTestingThread procTestC(pluginC);