DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 25d1c1b03f4b436b285a079687411618e127248b
parent 34d1547e311ba675a59040d65128167cf8c48a24
Author: falkTX <falktx@falktx.com>
Date:   Sat, 10 Sep 2022 10:26:23 +0100

Initialize self-test buffer; Mention CLAP in README

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
MREADME.md | 3++-
Mdistrho/src/DistrhoPluginJACK.cpp | 2+-
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -7,7 +7,7 @@ DPF is designed to make development of new plugins an easy and enjoyable task.<b It allows developers to create plugins with custom UIs using a simple C++ API.<br/> The framework facilitates exporting various different plugin formats from the same code-base.<br/> -DPF can build for LADSPA, DSSI, LV2, VST2 and VST3 formats.<br/> +DPF can build for LADSPA, DSSI, LV2, VST2, VST3 and CLAP formats.<br/> All current plugin format implementations are complete.<br/> A JACK/Standalone mode is also available, allowing you to quickly test plugins.<br/> @@ -44,6 +44,7 @@ Online help and discussion about DPF happens in the [kx.studio chat, DPF room](h - [DISTRHO ProM](https://github.com/DISTRHO/ProM) - [Dragonfly Reverb](https://michaelwillis.github.io/dragonfly-reverb) - [Fogpad-port](https://github.com/linuxmao-org/fogpad-port) + - [master_me](https://github.com/trummerschlunk/master_me) - [Ninjas2](https://github.com/rghvdberg/ninjas2) - [osamc-lv2-workshop](https://github.com/osamc-lv2-workshop/lv2-workshop) (simple plugins code examples) - [QuadraFuzz](https://github.com/jpcima/quadrafuzz) diff --git a/distrho/src/DistrhoPluginJACK.cpp b/distrho/src/DistrhoPluginJACK.cpp @@ -841,7 +841,7 @@ bool runSelfTests() plugin.setSampleRate(48000); plugin.activate(); - float buffer[128]; + float buffer[128] = {}; const float* inputs[DISTRHO_PLUGIN_NUM_INPUTS > 0 ? DISTRHO_PLUGIN_NUM_INPUTS : 1]; float* outputs[DISTRHO_PLUGIN_NUM_OUTPUTS > 0 ? DISTRHO_PLUGIN_NUM_OUTPUTS : 1]; for (int i=0; i<DISTRHO_PLUGIN_NUM_INPUTS; ++i)