clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 78687d496d333e3abc02dad587a24884bd50460c
parent 321aa03744f7b81aec909e04257ba8da9856841f
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Thu, 29 Sep 2016 12:19:30 +0200

Disable broken tools and examples

Diffstat:
Mexamples/CMakeLists.txt | 3++-
Mtools/CMakeLists.txt | 6++++--
Mtools/clap-alsa-host/clap-alsa-host.c | 4----
Mtools/clap-jack-host/clap-jack-host.c | 2--
4 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt @@ -1 +1,2 @@ -add_subdirectory(thyns) +# Currently broken +# add_subdirectory(thyns) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt @@ -1,3 +1,5 @@ add_subdirectory(clap-info) -add_subdirectory(clap-alsa-host) -add_subdirectory(clap-jack-host) + +# commenting the following because they are currently broken +# add_subdirectory(clap-alsa-host) +# add_subdirectory(clap-jack-host) diff --git a/tools/clap-alsa-host/clap-alsa-host.c b/tools/clap-alsa-host/clap-alsa-host.c @@ -112,9 +112,6 @@ int process(struct clap_alsa_host *app) float *out[2] = { app->out[0], app->out[1] }; struct clap_process p; - p.inputs = in; - p.outputs = out; - p.samples_count = SAMPLES_COUNT; p.steady_time = app->steady_time; p.events = NULL; // XXX add time info @@ -137,7 +134,6 @@ int process(struct clap_alsa_host *app) else p.events = event; last_event = event; - event->steady_time = app->steady_time;// seq_ev->time; } else { diff --git a/tools/clap-jack-host/clap-jack-host.c b/tools/clap-jack-host/clap-jack-host.c @@ -93,8 +93,6 @@ int process(jack_nframes_t nframes, void *arg) int32_t midi_in_count = jack_midi_get_event_count(midi_in_buf); struct clap_process p; - p.inputs = in; - p.outputs = out; p.samples_count = nframes; p.steady_time = app->steady_time; // XXX add time info