clap

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

commit 1c596e1604cd3353658d41089d4a347c27ede4a5
parent f59577df67f9801b97a95045a2250d1d1b41f93c
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Mon, 24 Jan 2022 16:47:58 +0100

audio_output should be writable to let the plugin update the constant mask

Diffstat:
Minclude/clap/process.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/clap/process.h b/include/clap/process.h @@ -51,7 +51,7 @@ typedef struct clap_process { // If a plugin does not implement clap_plugin_audio_ports, // then it gets a default stereo input and output. const clap_audio_buffer_t *audio_inputs; - const clap_audio_buffer_t *audio_outputs; + clap_audio_buffer_t *audio_outputs; alignas(4) uint32_t audio_inputs_count; alignas(4) uint32_t audio_outputs_count;