clap

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

commit b3bab57b85b4c06129e1d47d6030abb9273fc9b0
parent 039c0f06a2e2b21e6bb54fd9eaa95820e7c85d66
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Wed,  8 Jun 2022 17:16:22 +0200

Merge remote-tracking branch 'origin/main' into next

Diffstat:
MREADME.md | 4++--
Minclude/clap/ext/draft/transport-control.h | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -88,13 +88,13 @@ and use to get a basic plugin experience: ## Support extensions -- [thread-pool](include/clap/ext/draft/thread-pool.h), use the host thread pool +- [thread-pool](include/clap/ext/thread-pool.h), use the host thread pool - [timer-support](include/clap/ext/timer-support.h), lets the plugin register timer handlers - [posix-fd-support](include/clap/ext/posix-fd-support.h), lets the plugin register I/O handlers ## Extra extensions -- [note-name](include/clap/ext/draft/note-name.h), give a name to notes, useful for drum machines +- [note-name](include/clap/ext/note-name.h), give a name to notes, useful for drum machines - [tuning](include/clap/ext/draft/tuning.h), host provided microtuning - [track-info](include/clap/ext/draft/track-info.h) - [quick-controls](include/clap/ext/draft/quick-controls.h), bank of controls that can be mapped on a controlles with 8 knobs diff --git a/include/clap/ext/draft/transport-control.h b/include/clap/ext/draft/transport-control.h @@ -6,7 +6,7 @@ // The host has no obligation to execute those request, so the interface maybe // partially working. -static CLAP_CONSTEXPR const char CLAP_EXT_CV[] = "clap.transport-control.draft/0"; +static CLAP_CONSTEXPR const char CLAP_EXT_TRANSPORT_CONTROL[] = "clap.transport-control.draft/0"; #ifdef __cplusplus extern "C" {