clap

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

commit dcbc3494a8c00ce8907f8e85ea448435a5e34870
parent 9422873eeb88b817c41ec580de15affc545eb589
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Tue,  8 Mar 2022 10:31:13 +0100

Fix overlapping enum entry

Diffstat:
Minclude/clap/process.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/clap/process.h b/include/clap/process.h @@ -19,11 +19,11 @@ enum { // Rely upon the plugin's tail to determine if the plugin should continue to process. // see clap_plugin_tail - CLAP_PROCESS_TAIL, + CLAP_PROCESS_TAIL = 3, // Processing succeed, but no more processing is required, // until next event or variation in audio input. - CLAP_PROCESS_SLEEP = 3, + CLAP_PROCESS_SLEEP = 4, }; typedef int32_t clap_process_status;