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

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
RealtimeAnalyser.h 53 void setMaxDecibels(float k) { m_maxDecibels = k; }
54 float maxDecibels() const { return static_cast<float>(m_maxDecibels); }
93 double m_maxDecibels;
RealtimeAnalyser.cpp 65 , m_maxDecibels(DefaultMaxDecibels)
243 const double rangeScaleFactor = m_maxDecibels == m_minDecibels ? 1 : 1 / (m_maxDecibels - m_minDecibels);
253 // The range m_minDecibels to m_maxDecibels will be scaled to byte values from 0 to UCHAR_MAX.

Completed in 188 milliseconds