summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/peak.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-05-02 15:21:51 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-05-02 15:21:51 +0000
commitc3e666867cfd44768c9aa605abefde78274ace24 (patch)
tree547fb2300f0b384387647936c13d6672385aa0e7 /libs/ardour/ardour/peak.h
parenta612857eb6024f75f11094d09def4ccbe621b7b4 (diff)
reintroduce use of optimized functions for gain into buffer code, and cleanup the way they are declared to avoid depending on Session
git-svn-id: svn://localhost/ardour2/branches/midi@1775 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/peak.h')
-rw-r--r--libs/ardour/ardour/peak.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/peak.h b/libs/ardour/ardour/peak.h
index eaeafe0f5d..bbec40eea7 100644
--- a/libs/ardour/ardour/peak.h
+++ b/libs/ardour/ardour/peak.h
@@ -25,7 +25,7 @@
#include <ardour/utils.h>
static inline float
-compute_peak (ARDOUR::Sample *buf, nframes_t nsamples, float current)
+default_compute_peak (const ARDOUR::Sample * const buf, nframes_t nsamples, float current)
{
for (nframes_t i = 0; i < nsamples; ++i) {
current = f_max (current, fabsf (buf[i]));