OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:highestbin
(Results
1 - 1
of
1
) sorted by null
/cts/apps/CtsVerifier/jni/audioquality/
CompareSpectra.cpp
75
rms over all frequencies between lowestBin and
highestBin
is
78
int lowestBin, int
highestBin
, float* rms) {
105
if ((i >= lowestBin) && (i <=
highestBin
))
109
*rms = sqrt(averageEnergy / (
highestBin
- lowestBin + 1));
139
int
highestBin
= int(0.5 + (highestFreq * fftSize / sample_rate));
149
fftSize, lowestBin,
highestBin
, &rms1);
153
fftSize, lowestBin,
highestBin
, &rms2);
162
for (int i = lowestBin; i <=
highestBin
; ++i) {
173
*rmsDeviation = sqrt(sumDevSquared / (
highestBin
- lowestBin + 1));
Completed in 48 milliseconds