clap

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

commit 28ff841c5ef4b5130607f44cb70179e536efdef5
parent bcad926637d8075720ee1777ba95256b6818aa29
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Fri,  2 Dec 2022 10:42:21 +0100

Merge pull request #228 from Trinitou/next

small documentation issues
Diffstat:
Minclude/clap/ext/params.h | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/include/clap/ext/params.h b/include/clap/ext/params.h @@ -107,7 +107,7 @@ enum { // // The host can send live user changes for this parameter regardless of this flag. // - // If this parameters affect the internal processing structure of the plugin, ie: max delay, fft + // If this parameter affects the internal processing structure of the plugin, ie: max delay, fft // size, ... and the plugins needs to re-allocate its working buffers, then it should call // host->request_restart(), and perform the change once the plugin is re-activated. CLAP_PARAM_IS_AUTOMATABLE = 1 << 5, @@ -231,7 +231,7 @@ typedef struct clap_plugin_params { // This method must not be called concurrently to clap_plugin->process(). // // Note: if the plugin is processing, then the process() call will already achieve the - // parameter update (bi-directionnal), so a call to flush isn't required, also be aware + // parameter update (bi-directional), so a call to flush isn't required, also be aware // that the plugin may use the sample offset in process(), while this information would be // lost within flush(). // @@ -268,7 +268,9 @@ enum { // - some parameters were added or removed. // - some parameters had critical changes: // - is_per_note (flag) + // - is_per_key (flag) // - is_per_channel (flag) + // - is_per_port (flag) // - is_readonly (flag) // - is_bypass (flag) // - is_stepped (flag)