OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minDecibels
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AnalyserNode.idl
31
//
minDecibels
/ maxDecibels represent the range to scale the FFT analysis data for conversion to unsigned byte values.
32
[RaisesException=Setter] attribute double
minDecibels
;
AnalyserNode.h
57
double
minDecibels
() const { return m_analyser.
minDecibels
(); }
RealtimeAnalyser.h
49
double
minDecibels
() const { return m_minDecibels; }
AnalyserNode.cpp
95
ExceptionMessages::indexExceedsMaximumBound("
minDecibels
", k, maxDecibels()));
101
if (k >
minDecibels
()) {
106
ExceptionMessages::indexExceedsMinimumBound("maxDecibels", k,
minDecibels
()));
RealtimeAnalyser.cpp
205
const double
minDecibels
= m_minDecibels;
214
double dbMag = !linearValue ?
minDecibels
: AudioUtilities::linearToDecibels(linearValue);
234
const double
minDecibels
= m_minDecibels;
241
double dbMag = !linearValue ?
minDecibels
: AudioUtilities::linearToDecibels(linearValue);
244
double scaledValue = UCHAR_MAX * (dbMag -
minDecibels
) * rangeScaleFactor;
Completed in 195 milliseconds