OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NoiseThreshold
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/video_coding/
jitter_estimator.h
100
double
NoiseThreshold
() const;
jitter_estimator.cc
344
double VCMJitterEstimator::
NoiseThreshold
() const {
345
double
noiseThreshold
= _noiseStdDevs * sqrt(_varNoise) - _noiseStdDevOffset;
346
if (
noiseThreshold
< 1.0) {
347
noiseThreshold
= 1.0;
349
return
noiseThreshold
;
354
double ret = _theta[0] * (_maxFrameSize - _avgFrameSize) +
NoiseThreshold
();
Completed in 59 milliseconds