Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/aec3/
Dmatched_filter_lag_aggregator.cc26 thresholds_(thresholds) { in MatchedFilterLagAggregator()
28 RTC_DCHECK_LE(thresholds_.initial, thresholds_.converged); in MatchedFilterLagAggregator()
83 histogram_[candidate] > thresholds_.converged; in Aggregate()
84 if (histogram_[candidate] > thresholds_.converged || in Aggregate()
85 (histogram_[candidate] > thresholds_.initial && in Aggregate()
Dmatched_filter_lag_aggregator.h49 const EchoCanceller3Config::Delay::DelaySelectionThresholds thresholds_; variable
/external/webrtc/modules/video_coding/utility/
Dquality_scaler.cc260 thresholds_(thresholds), in QualityScaler()
284 RTC_LOG(LS_INFO) << "QP thresholds: low: " << thresholds_.low in QualityScaler()
285 << ", high: " << thresholds_.high; in QualityScaler()
306 thresholds_ = thresholds; in SetQpThresholds()
343 return (avg_qp_high) ? (avg_qp_high.value() <= thresholds_.low) : false; in QpFastFilterLow()
349 RTC_DCHECK_GE(thresholds_.low, 0); in CheckQp()
380 if (*avg_qp_high > thresholds_.high) { in CheckQp()
383 if (*avg_qp_low <= thresholds_.low) { in CheckQp()
Dquality_scaler.h87 VideoEncoder::QpThresholds thresholds_ RTC_GUARDED_BY(&task_checker_);