More details for lv2 export (category, CV type, label/brand)

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-06-29 14:14:14 +01:00
parent aabd9f9342
commit dd5344d2b8
10 changed files with 79 additions and 10 deletions

View file

@ -27,8 +27,14 @@
# error PLUGIN_CV_OUTPUTS undefined
#endif
static constexpr const bool kCvInputs[] = PLUGIN_CV_INPUTS;
static constexpr const bool kCvOutputs[] = PLUGIN_CV_OUTPUTS;
enum PortType {
Audio = 0,
Bi = 1,
Uni = 2,
};
static constexpr const int kCvInputs[] = PLUGIN_CV_INPUTS;
static constexpr const int kCvOutputs[] = PLUGIN_CV_OUTPUTS;
#include "src/lv2/buf-size.h"
#include "src/lv2/options.h"