X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fvst_plugin.h;h=e77ba892e3b03638f5bd50fc47f5374ca97ba75e;hb=e8366dbd830d0188ab78c3f095fd890ef160d7f6;hp=3450e2a480d22fc0b938590380574feb459865fe;hpb=aabcbf7bad012739e02301faeed156fed29a4638;p=ardour.git diff --git a/libs/ardour/ardour/vst_plugin.h b/libs/ardour/ardour/vst_plugin.h index 3450e2a480..e77ba892e3 100644 --- a/libs/ardour/ardour/vst_plugin.h +++ b/libs/ardour/ardour/vst_plugin.h @@ -31,6 +31,8 @@ typedef struct _VSTState VSTState; namespace ARDOUR { +class PluginInsert; + /** Parent class for VST plugins of both Windows and Linux varieties */ class LIBARDOUR_API VSTPlugin : public Plugin { @@ -42,10 +44,12 @@ public: void deactivate (); int set_block_size (pframes_t); + bool inplace_broken() const { return true; } float default_value (uint32_t port); float get_parameter (uint32_t port) const; uint32_t nth_parameter (uint32_t port, bool& ok) const; void set_parameter (uint32_t port, float val); + void set_parameter_automated (uint32_t port, float val); bool load_preset (PresetRecord); int get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const; std::string describe_parameter (Evoral::Parameter); @@ -56,7 +60,7 @@ public: bool parameter_is_control (uint32_t) const { return true; } bool parameter_is_input (uint32_t) const { return true; } bool parameter_is_output (uint32_t) const { return false; } - + int connect_and_run ( BufferSet&, ChanMapping in, ChanMapping out, pframes_t nframes, framecnt_t offset @@ -70,7 +74,7 @@ public: void print_parameter (uint32_t, char*, uint32_t len) const; bool has_editor () const; - + AEffect * plugin () const { return _plugin; } VSTState * state () const { return _state; } MidiBuffer * midi_buffer () const { return _midi_out_buf; } @@ -78,7 +82,11 @@ public: int set_state (XMLNode const &, int); int first_user_preset_index () const; - + + void set_insert (PluginInsert* pi, uint32_t num) { _pi = pi; _num = num; } + PluginInsert* plugin_insert () const { return _pi; } + uint32_t plugin_number () const { return _num; } + protected: void set_plugin (AEffect *); gchar* get_chunk (bool) const; @@ -91,10 +99,12 @@ protected: XMLTree * presets_tree () const; std::string presets_file () const; void find_presets (); - + VSTHandle* _handle; VSTState* _state; AEffect* _plugin; + PluginInsert* _pi; + uint32_t _num; MidiBuffer* _midi_out_buf; };