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

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
EqualPowerPanner.h 48 double m_smoothingConstant;
EqualPowerPanner.cpp 49 m_smoothingConstant = AudioUtilities::discreteTimeConstantForSampleRate(SmoothingTimeConstant, sampleRate);
119 const double SmoothingConstant = m_smoothingConstant;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParam.h 86 void setSmoothingConstant(double k) { m_smoothingConstant = k; }
116 , m_smoothingConstant(DefaultSmoothingConstant)
135 double m_smoothingConstant;
AudioParam.cpp 87 m_smoothedValue += (m_value - m_smoothedValue) * m_smoothingConstant;

Completed in 439 milliseconds