summaryrefslogtreecommitdiff
path: root/libs/ardour/port_insert.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-04-23 17:48:37 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-04-23 17:48:37 +0000
commit28368793415ba934132994d8c10a5e149c1a8d9d (patch)
tree818d5f406e0c9b6f95f43faae0ff88d885a59ad6 /libs/ardour/port_insert.cc
parent0a22716b74d52fcbef37bebf529048f7f3bc79e0 (diff)
remove offset from process callback tree. some breakage may have occured. yes, really.
git-svn-id: svn://localhost/ardour2/branches/3.0@4999 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/port_insert.cc')
-rw-r--r--libs/ardour/port_insert.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/libs/ardour/port_insert.cc b/libs/ardour/port_insert.cc
index 5559ac0e04..8f53be8534 100644
--- a/libs/ardour/port_insert.cc
+++ b/libs/ardour/port_insert.cc
@@ -77,7 +77,7 @@ PortInsert::~PortInsert ()
}
void
-PortInsert::run_in_place (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset)
+PortInsert::run_in_place (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes)
{
if (_io->n_outputs().n_total() == 0) {
return;
@@ -85,13 +85,12 @@ PortInsert::run_in_place (BufferSet& bufs, nframes_t start_frame, nframes_t end_
if (!active()) {
/* deliver silence */
- _io->silence (nframes, offset);
+ _io->silence (nframes);
return;
}
- _io->deliver_output(bufs, start_frame, end_frame, nframes, offset);
-
- _io->collect_input(bufs, nframes, offset);
+ _io->deliver_output (bufs, start_frame, end_frame, nframes);
+ _io->collect_input (bufs, nframes);
}
XMLNode&