diff --git a/dpf b/dpf index 7a056bb..0e839f0 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit 7a056bbcf84f9437d7a00a5659be5bb6008bfe1d +Subproject commit 0e839f08ccfdb5cd12f3363cecd8c8c388828c50 diff --git a/plugins/Kars/DistrhoPluginKars.cpp b/plugins/Kars/DistrhoPluginKars.cpp index 3d4be50..b16ef18 100644 --- a/plugins/Kars/DistrhoPluginKars.cpp +++ b/plugins/Kars/DistrhoPluginKars.cpp @@ -15,6 +15,7 @@ */ #include "DistrhoPluginKars.hpp" +#include "DistrhoPluginUtils.hpp" START_NAMESPACE_DISTRHO @@ -117,137 +118,6 @@ void DistrhoPluginKars::activate() } } -/** - Handy class to help keep audio buffer in sync with incoming MIDI events. - To use it, create a local variable (on the stack) and call nextEvent() until it returns false. - @code - for (AudioMidiSyncHelper amsh(outputs, frames, midiEvents, midiEventCount); amsh.nextEvent();) - { - float* const outL = amsh.outputs[0]; - float* const outR = amsh.outputs[1]; - - for (uint32_t i=0; i