clap

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

commit f59577df67f9801b97a95045a2250d1d1b41f93c
parent 7c6e51eb504bc68b5ac93d05041a4ac6b03d8953
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Fri, 14 Jan 2022 09:30:55 +0100

s/audio/note/

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

diff --git a/include/clap/ext/note-ports.h b/include/clap/ext/note-ports.h @@ -41,7 +41,7 @@ typedef struct clap_note_port_info { alignas(1) char name[CLAP_NAME_SIZE]; // displayable name, i18n? } clap_note_port_info_t; -// The audio ports scan has to be done while the plugin is deactivated. +// The note ports scan has to be done while the plugin is deactivated. typedef struct clap_plugin_note_ports { // number of ports, for either input or output // [main-thread] @@ -71,7 +71,7 @@ typedef struct clap_host_note_ports { // [main-thread] uint32_t (*supported_dialects)(const clap_host_t *host); - // Rescan the full list of audio ports according to the flags. + // Rescan the full list of note ports according to the flags. // [main-thread] void (*rescan)(const clap_host_t *host, uint32_t flags); } clap_host_note_ports_t;