HomeSort by relevance Sort by last modified time
    Searched refs:RttMs (Results 1 - 3 of 3) sorted by null

  /external/webrtc/webrtc/modules/video_coding/
rtt_filter.h 27 void Update(int64_t rttMs);
29 int64_t RttMs() const;
40 bool JumpDetection(int64_t rttMs);
45 bool DriftDetection(int64_t rttMs);
rtt_filter.cc 56 void VCMRttFilter::Update(int64_t rttMs) {
58 if (rttMs == 0) {
65 if (rttMs > 3000) {
66 rttMs = 3000;
82 _avgRtt = filtFactor * _avgRtt + (1 - filtFactor) * rttMs;
84 (1 - filtFactor) * (rttMs - _avgRtt) * (rttMs - _avgRtt);
85 _maxRtt = VCM_MAX(rttMs, _maxRtt);
86 if (!JumpDetection(rttMs) || !DriftDetection(rttMs)) {
    [all...]
jitter_estimator.cc 375 void VCMJitterEstimator::UpdateRtt(int64_t rttMs) {
376 _rttFilter.Update(rttMs);
392 jitterMS += _rttFilter.RttMs() * rttMultiplier;

Completed in 187 milliseconds