X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fvst_plugin.h;h=3440534eb992f4a501c62cfd6908c5b65323a530;hb=e8379b3818b8a297d4ed911d1e7a42bc2b55a587;hp=3450e2a480d22fc0b938590380574feb459865fe;hpb=86343b6c15a3a43f082802484d2bc813d34db821;p=ardour.git diff --git a/libs/ardour/ardour/vst_plugin.h b/libs/ardour/ardour/vst_plugin.h index 3450e2a480..3440534eb9 100644 --- a/libs/ardour/ardour/vst_plugin.h +++ b/libs/ardour/ardour/vst_plugin.h @@ -29,8 +29,12 @@ typedef struct _VSTHandle VSTHandle; struct _VSTState; typedef struct _VSTState VSTState; +#include "ardour/vestige/aeffectx.h" + namespace ARDOUR { +class PluginInsert; + /** Parent class for VST plugins of both Windows and Linux varieties */ class LIBARDOUR_API VSTPlugin : public Plugin { @@ -42,10 +46,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 +62,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 +76,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 +84,13 @@ 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; } + VstTimeInfo* timeinfo () { return &_timeInfo; } + + protected: void set_plugin (AEffect *); gchar* get_chunk (bool) const; @@ -91,12 +103,15 @@ 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; + VstTimeInfo _timeInfo; }; }