clap

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

commit ffc7bbfc615a3d5bbca2c13ff78f275680503ac3
parent 8f5a00d21db4041eb17e699fe985ee441d66d3f4
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Tue, 17 Jan 2023 10:17:50 +0100

adds `note-detector` category for plugins which converts audio to notes

Diffstat:
MChangeLog.md | 1+
Minclude/clap/plugin-features.h | 3+++
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/ChangeLog.md b/ChangeLog.md @@ -3,6 +3,7 @@ * Add a [factory](include/clap/factory) folder for better organization and move our factories there * [params.h](include/clap/ext/params.h): fix typos * CMake: disable C17 targets for CMake < 3.21 +* [plugin-features.h](include/clap/plugin-features.h): adds `note-detector` category for plugins which converts audio to notes ## Draft extensions diff --git a/include/clap/plugin-features.h b/include/clap/plugin-features.h @@ -21,6 +21,9 @@ // Add this feature if your plugin is a note effect or a note generator/sequencer #define CLAP_PLUGIN_FEATURE_NOTE_EFFECT "note-effect" +// Add this feature if your plugin converts audio to notes +#define CLAP_PLUGIN_FEATURE_NOTE_DETECTOR "note-detector" + // Add this feature if your plugin is an analyzer #define CLAP_PLUGIN_FEATURE_ANALYZER "analyzer"