clap

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

commit 1865ff89b3cb0efec09a89076eb0b82fcf0b5ad5
parent e4310b7181699d125b146c8693638283e42f6b8a
Author: joshnatis <joshnatis0@gmail.com>
Date:   Fri, 24 Jun 2022 12:37:34 -0400

Fix typos in surround.h

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

diff --git a/include/clap/ext/draft/surround.h b/include/clap/ext/draft/surround.h @@ -4,7 +4,7 @@ // This extension can be used to specify the channel mapping used by the plugin. // -// To have a consistent surround features across all the plugin instances, +// To have consistent surround features across all the plugin instances, // here is the proposed workflow: // 1. the plugin queries the host preferred channel mapping and // adjusts its configuration to match it. @@ -14,7 +14,7 @@ // 1. deactivate the plugin // 2. host calls clap_plugin_surround->changed() // 3. plugin calls clap_host_surround->get_preferred_channel_map() -// 4. plugin eventualy calls clap_host_surround->changed() +// 4. plugin eventually calls clap_host_surround->changed() // 5. host calls clap_plugin_surround->get_channel_map() if changed // 6. host activates the plugin and can start processing audio // @@ -69,7 +69,7 @@ typedef struct clap_plugin_surround { } clap_plugin_surround_t; typedef struct clap_host_surround { - // Informs the host that the channel map have changed. + // Informs the host that the channel map has changed. // The channel map can only change when the plugin is de-activated. // [main-thread] void (*changed)(const clap_host_t *host);