From b4103bd5a37e5da1429d723fb5c5d7e28385ff23 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 20 Mar 2016 09:51:17 +0100 Subject: Add getInputProperties/getOutputProperties VST methods. --- pluginvst.cc | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'pluginvst.cc') diff --git a/pluginvst.cc b/pluginvst.cc index 33eb1b8..7de518e 100644 --- a/pluginvst.cc +++ b/pluginvst.cc @@ -169,6 +169,40 @@ void PluginVST::resume() onActiveChange(active); } +bool PluginVST::getInputProperties(VstInt32 index, VstPinProperties* props) +{ + if(index < (VstInt32)getNumberOfAudioInputs()) + { + vst_strncpy(props->label, "Channel ", 63); + char temp[11] = {0}; + int2string(index + 1, temp, 10); + vst_strncat(props->label, temp, 63); + + props->flags = kVstPinIsActive; + + return true; + } + + return false; +} + +bool PluginVST::getOutputProperties(VstInt32 index, VstPinProperties* props) +{ + if(index < (VstInt32)getNumberOfAudioOutputs()) + { + vst_strncpy(props->label, "Channel ", 63); + char temp[11] = {0}; + int2string(index + 1, temp, 10); + vst_strncat(props->label, temp, 63); + + props->flags = kVstPinIsActive; + + return true; + } + + return false; +} + void PluginVST::setSampleRate(float sampleRate) { // Called when the sample rate changes (always in a suspend state). -- cgit v1.2.3