Home
last modified time | relevance | path

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

/external/webrtc/webrtc/system_wrappers/source/
Dtimestamp_extrapolator.cc23 _prevWrapTimestamp(-1), in TimestampExtrapolator()
55 _prevWrapTimestamp = -1; in Reset()
189 if (_prevWrapTimestamp == -1) in CheckForWrapArounds()
191 _prevWrapTimestamp = ts90khz; in CheckForWrapArounds()
194 if (ts90khz < _prevWrapTimestamp) in CheckForWrapArounds()
199 if (static_cast<int32_t>(ts90khz - _prevWrapTimestamp) > 0) in CheckForWrapArounds()
207 else if (static_cast<int32_t>(_prevWrapTimestamp - ts90khz) > 0) in CheckForWrapArounds()
212 _prevWrapTimestamp = ts90khz; in CheckForWrapArounds()
/external/webrtc/webrtc/system_wrappers/include/
Dtimestamp_extrapolator.h40 int64_t _prevWrapTimestamp; variable