clap

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

commit 9ad713e43db102f6a937bb3f38f95a9628fb2e5e
parent 1d04029b79745a26965200c0c426c28ad45b611a
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Sat, 21 May 2022 11:11:27 +0200

Make some less tested extensions draft

Diffstat:
Minclude/clap/converters/clap-converter.h | 2+-
Minclude/clap/converters/vst2-converter.h | 2+-
Minclude/clap/converters/vst3-converter.h | 2+-
Minclude/clap/plugin-invalidation.h | 2+-
4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/clap/converters/clap-converter.h b/include/clap/converters/clap-converter.h @@ -35,7 +35,7 @@ typedef struct clap_clap_converter { } clap_clap_converter_t; // Factory identifier -static CLAP_CONSTEXPR const char CLAP_CLAP_CONVERTER_FACTORY_ID[] = "clap.clap-converter-factory"; +static CLAP_CONSTEXPR const char CLAP_CLAP_CONVERTER_FACTORY_ID[] = "clap.clap-converter-factory/draft0"; // List all the converters available in the current DSO. typedef struct clap_clap_converter_factory { diff --git a/include/clap/converters/vst2-converter.h b/include/clap/converters/vst2-converter.h @@ -36,7 +36,7 @@ typedef struct clap_vst2_converter { } clap_vst2_converter_t; // Factory identifier -static CLAP_CONSTEXPR const char CLAP_VST2_CONVERTER_FACTORY_ID[] = "clap.vst2-converter-factory"; +static CLAP_CONSTEXPR const char CLAP_VST2_CONVERTER_FACTORY_ID[] = "clap.vst2-converter-factory/draft0"; // List all the converters available in the current DSO. typedef struct clap_vst2_converter_factory { diff --git a/include/clap/converters/vst3-converter.h b/include/clap/converters/vst3-converter.h @@ -38,7 +38,7 @@ typedef struct clap_vst3_converter { } clap_vst3_converter_t; // Factory identifier -static CLAP_CONSTEXPR const char CLAP_VST3_CONVERTER_FACTORY_ID[] = "clap.vst3-converter-factory"; +static CLAP_CONSTEXPR const char CLAP_VST3_CONVERTER_FACTORY_ID[] = "clap.vst3-converter-factory/draft0"; // List all the converters available in the current DSO. typedef struct clap_vst3_converter_factory { diff --git a/include/clap/plugin-invalidation.h b/include/clap/plugin-invalidation.h @@ -19,7 +19,7 @@ typedef struct clap_plugin_invalidation_source { } clap_plugin_invalidation_source_t; static const CLAP_CONSTEXPR char CLAP_PLUGIN_INVALIDATION_FACTORY_ID[] = - "clap.plugin-invalidation-factory"; + "clap.plugin-invalidation-factory/draft0"; // Used to figure out when a plugin needs to be scanned again. // Imagine a situation with a single entry point: my-plugin.clap which then scans itself