clap

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

commit 7c12e59fbff0efed04f6e660c1fdaf0ca9b4e78c
parent 35ef393044b69f326f42615c12f42df2d4111659
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Wed, 25 May 2022 16:53:23 +0200

Fixes #81

Diffstat:
Minclude/clap/ext/audio-ports.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/include/clap/ext/audio-ports.h b/include/clap/ext/audio-ports.h @@ -32,6 +32,10 @@ enum { // 64 bits audio is preferred with this port CLAP_AUDIO_PORT_PREFERS_64BITS = 1 << 2, + + // This port must be used with the same sample size as all + // the other ports which have this flags. + CLAP_AUDIO_PORT_REQUIRES_COMMON_SAMPLE_SIZE = 1 << 3, }; typedef struct clap_audio_port_info {