summaryrefslogtreecommitdiff
path: root/libs/ardour/meter.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-08-22 10:21:39 +0000
committerCarl Hetherington <carl@carlh.net>2009-08-22 10:21:39 +0000
commit970a3a7292287098ab36203d967ea1b1d0ca6117 (patch)
treeace4afdc4ea8505bdb210d603e6d19c102a9514f /libs/ardour/meter.cc
parent4f3bddf7ef163c3106ba973123cbc657ebaf4b74 (diff)
Introduce an accurate version of coefficient_to_dB and use it in non speed-critical
code. Fixes mantis 2833. git-svn-id: svn://localhost/ardour2/branches/3.0@5565 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 c8546c8ffa..76d2be262c 100644
--- a/libs/ardour/meter.cc
+++ b/libs/ardour/meter.cc
@@ -197,7 +197,7 @@ PeakMeter::meter ()
/* compute new visible value using falloff */
if (new_peak > 0.0) {
- new_peak = coefficient_to_dB (new_peak);
+ new_peak = fast_coefficient_to_dB (new_peak);
} else {
new_peak = minus_infinity();
}