clap

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

commit 66a727f19181c7c72c1ce58c5bd3c348779681ca
parent 2e7aa67c4d41877366334da2c255b2b85dfac635
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Tue,  8 Mar 2022 10:24:32 +0100

Requires the main audio in/out to be declared first

Fixes #57

Diffstat:
Minclude/clap/ext/audio-ports.h | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/include/clap/ext/audio-ports.h b/include/clap/ext/audio-ports.h @@ -21,8 +21,9 @@ extern "C" { #endif enum { - // This port main audio input or output. + // This port is the main audio input or output. // There can be only one main input and main output. + // Main port must be at index 0. CLAP_AUDIO_PORT_IS_MAIN = 1 << 0, // The prefers 64 bits audio with this port.