clap

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

commit 5dcca0aa9948223b5f1b6c12ef3eb4084a175cf1
parent 46a2d79f8db353554e4d688cb198fff4758a6dec
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Wed, 22 Dec 2021 18:56:24 +0100

Add the info that a plugin is capable to process surround or ambisonic to the plugin descriptor

Diffstat:
Minclude/clap/plugin.h | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/include/clap/plugin.h b/include/clap/plugin.h @@ -30,6 +30,12 @@ enum { // If this is the only type reported by the plugin, the host can assume that it wont change the // audio and event signal. CLAP_PLUGIN_ANALYZER = (1 << 3), + + // This plugin is able to process surround audio + CLAP_PLUGIN_SURROUND = (1 << 4), + + // This plugin is able to process ambisonic audio + CLAP_PLUGIN_AMBISONIC = (1 << 4), }; typedef int32_t clap_plugin_type;