Home
last modified time | relevance | path

Searched refs:kHistBinCenters (Results 1 – 1 of 1) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/agc/
Dhistogram.cc20 static const double kHistBinCenters[] = { variable
72 kHistSize == sizeof(kHistBinCenters) / sizeof(kHistBinCenters[0]), in Histogram()
193 if (rms <= kHistBinCenters[0]) { in GetBinIndex()
195 } else if (rms >= kHistBinCenters[kHistSize - 1]) { in GetBinIndex()
205 double b = 0.5 * (kHistBinCenters[index] + kHistBinCenters[index + 1]); in GetBinIndex()
220 mean_val += p * kHistBinCenters[n]; in CurrentRms()
223 mean_val = kHistBinCenters[0]; in CurrentRms()