summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/insert.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-04-14 19:23:58 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-04-14 19:23:58 +0000
commitd68045d6c5933580dace6b63311040f4b1716f72 (patch)
treee5c4a81f190559ab1b1f1bf39f6d0c274c178a8d /libs/ardour/ardour/insert.h
parent4558ae1e6e9e91450a45c44d010a9a6f03c6de38 (diff)
EXPERIMENTAL! NEEDS TESTING! remove "offset" from almost everything in the process callback tree
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4979 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/insert.h')
-rw-r--r--libs/ardour/ardour/insert.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/ardour/insert.h b/libs/ardour/ardour/insert.h
index 8691a292b1..c401a2062e 100644
--- a/libs/ardour/ardour/insert.h
+++ b/libs/ardour/ardour/insert.h
@@ -49,7 +49,7 @@ class Insert : public Redirect
virtual ~Insert() { }
- virtual void run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes, nframes_t offset) = 0;
+ virtual void run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes) = 0;
virtual void activate () {}
virtual void deactivate () {}
@@ -70,7 +70,7 @@ class PortInsert : public Insert
int set_state(const XMLNode&);
void init ();
- void run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes, nframes_t offset);
+ void run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes);
nframes_t latency();
@@ -99,8 +99,8 @@ class PluginInsert : public Insert
XMLNode& get_state(void);
int set_state(const XMLNode&);
- void run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes, nframes_t offset);
- void silence (nframes_t nframes, nframes_t offset);
+ void run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes);
+ void silence (nframes_t nframes);
void activate ();
void deactivate ();
@@ -149,7 +149,7 @@ class PluginInsert : public Insert
void parameter_changed (uint32_t, float);
vector<boost::shared_ptr<Plugin> > _plugins;
- void automation_run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes, nframes_t offset);
+ void automation_run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes);
void connect_and_run (vector<Sample *>& bufs, uint32_t nbufs, nframes_t nframes, nframes_t offset, bool with_auto, nframes_t now = 0);
void init ();