Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/video_coding/
Drtt_filter.cc37 _driftCount = rhs._driftCount; in operator =()
51 _driftCount = 0; in Reset()
129 if (_driftCount < kMaxDriftJumpCount) { in DriftDetection()
132 _driftBuf[_driftCount] = rttMs; in DriftDetection()
133 _driftCount++; in DriftDetection()
135 if (_driftCount >= _detectThreshold) { in DriftDetection()
137 ShortRttFilter(_driftBuf, _driftCount); in DriftDetection()
139 _driftCount = 0; in DriftDetection()
142 _driftCount = 0; in DriftDetection()
Drtt_filter.h58 int32_t _driftCount; variable