clap

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

commit 3bdb7ea1386d774bc86a2d953c0f37dc00c472b6
parent 2fe3af4149b956062e8ccc9c91ea1f8983e7dae9
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Tue,  7 Mar 2023 19:38:31 +0100

Improve doc.

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

diff --git a/include/clap/ext/draft/extensible-audio-ports.h b/include/clap/ext/draft/extensible-audio-ports.h @@ -6,14 +6,15 @@ extern "C" { #endif -// This extension lets the host add and remove audio ports +// This extension lets the host add and remove audio ports to the plugin. static CLAP_CONSTEXPR const char CLAP_EXT_EXTENSIBLE_AUDIO_PORTS[] = "clap.extensible-audio-ports.draft0"; typedef struct clap_plugin_extensible_audio_ports { // Asks the plugin to add a new port (at the end of the list), with the following settings. + // port_type: see clap_audio_port_info.port_type for interpretation. + // port_details: see clap_audio_port_configuration_request.port_details for interpretation. // Returns true on success. - // port_type and port_details are analogous to what you'll find in audio-ports.h // [main-thread && !is_active] bool(CLAP_ABI *add_port)(const clap_plugin_t *plugin, bool is_input,