clap

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

commit 19b06367172b08ac2d34ae21d9aaaff6a9f7ab75
parent 97f18a4c1007bb1bee99070a6723cbdd26b22b5e
Author: joshnatis <joshnatis0@gmail.com>
Date:   Fri, 24 Jun 2022 12:25:37 -0400

Fix typos in audio-ports.h

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

diff --git a/include/clap/ext/audio-ports.h b/include/clap/ext/audio-ports.h @@ -27,14 +27,14 @@ enum { // Main port must be at index 0. CLAP_AUDIO_PORT_IS_MAIN = 1 << 0, - // The port can be used with 64 bits audio + // This port can be used with 64 bits audio CLAP_AUDIO_PORT_SUPPORTS_64BITS = 1 << 1, // 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. - // In other words if all ports have this flags then the plugin may either be used entirely with + // This port must be used with the same sample size as all the other ports which have this flag. + // In other words if all ports have this flag 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, };