Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/video_coding/
Drtt_filter.cc36 _jumpCount = rhs._jumpCount; in operator =()
50 _jumpCount = 0; in Reset()
97 int jumpCountSign = (_jumpCount >= 0) ? 1 : -1; in JumpDetection()
102 _jumpCount = 0; in JumpDetection()
104 if (abs(_jumpCount) < kMaxDriftJumpCount) { in JumpDetection()
110 _jumpBuf[abs(_jumpCount)] = rttMs; in JumpDetection()
111 _jumpCount += diffSign; in JumpDetection()
113 if (abs(_jumpCount) >= _detectThreshold) { in JumpDetection()
115 ShortRttFilter(_jumpBuf, abs(_jumpCount)); in JumpDetection()
117 _jumpCount = 0; in JumpDetection()
[all …]
Drtt_filter.h57 int32_t _jumpCount; variable