aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/include/lv2wrapper.h
Commit message (Collapse)AuthorAgeFilesLines
* LV2: add support for (de)activate in plugin wrapper.Harald Eilertsen2020-09-021-1/+5
| | | | | | | | The `activate` callback is called _before_ any audio processing begins. This is a good place to initialize the plugin to a known good state. The `deactivate` callback is called _after_ all audio processing is finished. If any cleanup is needed, this is a good place to do so.
* LV2: Refactor common LV2Wrapper.Harald Eilertsen2020-07-191-0/+75
Move the common wrapper code into a template class that can be instantiated from each plugin.