Amend f3c0c1a865 (Add quarter-note position methods).
[ardour.git] / libs / ardour / ardour / vst_plugin.h
index b5c289872cdddc21373089bcb6123b80c0eebf0c..e56b9c005cc353716762077cdc3ff03a97b40b1a 100644 (file)
@@ -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
 {
@@ -59,10 +63,11 @@ public:
        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
-               );
+       int connect_and_run (BufferSet&,
+                       framepos_t start, framepos_t end, double speed,
+                       ChanMapping in, ChanMapping out,
+                       pframes_t nframes, framecnt_t offset
+                       );
 
        std::string unique_id () const;
        const char * label () const;
@@ -81,6 +86,14 @@ public:
 
        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; }
+       framepos_t transport_frame () const { return _transport_frame; }
+       float transport_speed () const { return _transport_speed; }
+
+
 protected:
        void set_plugin (AEffect *);
        gchar* get_chunk (bool) const;
@@ -97,8 +110,15 @@ protected:
        VSTHandle* _handle;
        VSTState*  _state;
        AEffect*   _plugin;
+       PluginInsert* _pi;
+       uint32_t      _num;
 
        MidiBuffer* _midi_out_buf;
+       VstTimeInfo _timeInfo;
+
+       framepos_t _transport_frame;
+       float      _transport_speed;
+       mutable std::map <uint32_t, float> _parameter_defaults;
 };
 
 }