HomeSort by relevance Sort by last modified time
    Searched refs:m_minDecibels (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
RealtimeAnalyser.h 48 void setMinDecibels(double k) { m_minDecibels = k; }
49 double minDecibels() const { return m_minDecibels; }
91 double m_minDecibels;
RealtimeAnalyser.cpp 61 , m_minDecibels(DefaultMinDecibels)
205 const double minDecibels = m_minDecibels;
233 const double rangeScaleFactor = m_maxDecibels == m_minDecibels ? 1 : 1 / (m_maxDecibels - m_minDecibels);
234 const double minDecibels = m_minDecibels;
243 // The range m_minDecibels to m_maxDecibels will be scaled to byte values from 0 to UCHAR_MAX.

Completed in 2719 milliseconds