clap

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

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

Doc.

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

diff --git a/include/clap/ext/audio-ports.h b/include/clap/ext/audio-ports.h @@ -33,8 +33,9 @@ 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. + // This port must be used with the same sample size as all the other ports which have this flags. + // In other words if all ports have this flags then the plugin may either be used entirely with + // 64 bits audio or 32 bits audio, but it can't be mixed. CLAP_AUDIO_PORT_REQUIRES_COMMON_SAMPLE_SIZE = 1 << 3, };