summaryrefslogtreecommitdiff
path: root/libs/ardour/meter.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/meter.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/meter.cc')
-rw-r--r--libs/ardour/meter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/meter.cc b/libs/ardour/meter.cc
index 6ea5a30920..d108374ba0 100644
--- a/libs/ardour/meter.cc
+++ b/libs/ardour/meter.cc
@@ -33,7 +33,7 @@ namespace ARDOUR {
* be set to 0.
*/
void
-PeakMeter::run (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset)
+PeakMeter::run_in_place (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset)
{
size_t meterable = std::min((size_t)bufs.count().n_total(), _peak_power.size());