commit dd97ce310e14e81b033d3eda1f93d367941ad63d parent f45f18cf1e2879eef015eaabd94057a59f5805a5 Author: Alexandre Bique <bique.alexandre@gmail.com> Date: Tue, 16 Jan 2024 09:53:02 +0100 Missing ID cleanup for ambisonic Diffstat:
M | include/clap/ext/ambisonic.h | | | 9 | +++++---- |
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/include/clap/ext/ambisonic.h b/include/clap/ext/ambisonic.h @@ -3,10 +3,11 @@ #include "../plugin.h" // This extension can be used to specify the channel mapping used by the plugin. -// -// This extension ID contains `draft', yet it is stable. -// See conventions/extension-id.md for more info. -static CLAP_CONSTEXPR const char CLAP_EXT_AMBISONIC[] = "clap.ambisonic.draft/3"; +static CLAP_CONSTEXPR const char CLAP_EXT_AMBISONIC[] = "clap.ambisonic/3"; + +// The latest draft is 100% compatible. +// This compat ID may be removed in 2026. +static CLAP_CONSTEXPR const char CLAP_EXT_AMBISONIC_COMPAT[] = "clap.ambisonic.draft/3"; static CLAP_CONSTEXPR const char CLAP_PORT_AMBISONIC[] = "ambisonic";