summaryrefslogtreecommitdiff
path: root/libs/ardour/send.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-11-26 01:29:11 +0000
committerDavid Robillard <d@drobilla.net>2007-11-26 01:29:11 +0000
commitf2aa62385872367b5402f13a0e02527c54589cd4 (patch)
tree64d1ff343d0cb31daf9e5991c75c74611709da82 /libs/ardour/send.cc
parent2a391a677d8bf77323fef3dc0eaa6b42b39ac13b (diff)
Use normal Processor run_in_place interface on Meter.
git-svn-id: svn://localhost/ardour2/trunk@2714 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/send.cc')
-rw-r--r--libs/ardour/send.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc
index 52184dece1..736a443c72 100644
--- a/libs/ardour/send.cc
+++ b/libs/ardour/send.cc
@@ -131,7 +131,7 @@ Send::run_in_place (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame,
if (_io->_gain == 0) {
_io->_meter->reset();
} else {
- _io->_meter->run(_io->output_buffers(), start_frame, end_frame, nframes, offset);
+ _io->_meter->run_in_place(_io->output_buffers(), start_frame, end_frame, nframes, offset);
}
}