Home
last modified time | relevance | path

Searched refs:dBscale (Results 1 – 3 of 3) sorted by relevance

/dports/audio/sonic-visualiser/sonic-visualiser-4.0.1/svgui/layer/
H A DPaintAssistant.cpp161 dBscale(double sample, int m, double maxVal, double minVal) in dBscale() function
163 if (sample < 0.0) return dBscale(-sample, m, maxVal, minVal); in dBscale()
191 vy = minY + height - dBscale(value, height, maxVal, minVal); in getYForValue()
H A DWaveformLayer.cpp436 WaveformLayer::dBscale(double sample, int m) const in dBscale() function in WaveformLayer
438 if (sample < 0.0) return dBscale(-sample, m); in dBscale()
1025 double db0 = dBscale(range.min() * gain, m); in paintChannel()
1026 double db1 = dBscale(range.max() * gain, m); in paintChannel()
1030 else rangeBottom = dBscale(range.absmean() * gain, m); in paintChannel()
1033 rangeBottom = -dBscale(range.min() * gain, m); in paintChannel()
1034 rangeTop = dBscale(range.max() * gain, m); in paintChannel()
1035 meanBottom = -dBscale(range.absmean() * gain, m); in paintChannel()
1036 meanTop = dBscale(range.absmean() * gain, m); in paintChannel()
1376 vy = int(dBscale(value, m)); in getYForValue()
H A DWaveformLayer.h197 double dBscale(double sample, int m) const;