clap

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

commit 2f8a40797f71ba3a15fcb1bf61bd85791a552541
parent f3742e1fcb90410255c23df7ed5f7617d5ab8f45
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date:   Tue, 21 Dec 2021 21:34:33 +0100

Fixes #18

Diffstat:
Minclude/clap/chmap.h | 7+++++--
Minclude/clap/version.h | 2+-
2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/include/clap/chmap.h b/include/clap/chmap.h @@ -16,8 +16,11 @@ enum { // see clap_plugin_surround to inspect the exact channel layout CLAP_CHMAP_SURROUND = 3, - // opaque ambisonic channel map - CLAP_CHMAP_AMBISONIC = 4, + // FuMa channel ordering + CLAP_CHMAP_AMBISONIC_FUMA = 4, + + // ACN channel ordering + CLAP_CHMAP_AMBISONIC_ACN = 5, }; typedef int32_t clap_chmap; diff --git a/include/clap/version.h b/include/clap/version.h @@ -22,7 +22,7 @@ typedef struct clap_version { static const uint32_t CLAP_VERSION_MAJOR = 0; static const uint32_t CLAP_VERSION_MINOR = 16; -static const uint32_t CLAP_VERSION_REVISION = 0; +static const uint32_t CLAP_VERSION_REVISION = 1; static const clap_version_t CLAP_VERSION = { CLAP_VERSION_MAJOR, CLAP_VERSION_MINOR, CLAP_VERSION_REVISION};