OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_maxDecibels
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/webaudio/
RealtimeAnalyser.h
58
void setMaxDecibels(float k) {
m_maxDecibels
= k; }
59
float maxDecibels() const { return static_cast<float>(
m_maxDecibels
); }
99
double
m_maxDecibels
;
RealtimeAnalyser.cpp
65
,
m_maxDecibels
(DefaultMaxDecibels)
236
const double RangeScaleFactor =
m_maxDecibels
== m_minDecibels ? 1.0 : 1.0 / (
m_maxDecibels
- m_minDecibels);
245
// The range m_minDecibels to
m_maxDecibels
will be scaled to byte values from 0 to UCHAR_MAX.
Completed in 46 milliseconds