Home
last modified time | relevance | path

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

/external/webrtc/rtc_base/time/
Dtimestamp_extrapolator.cc60 void TimestampExtrapolator::Update(int64_t tMs, uint32_t ts90khz) { in Update() argument
75 CheckForWrapArounds(ts90khz); in Update()
78 static_cast<int64_t>(ts90khz) + in Update()
168 void TimestampExtrapolator::CheckForWrapArounds(uint32_t ts90khz) { in CheckForWrapArounds() argument
170 _prevWrapTimestamp = ts90khz; in CheckForWrapArounds()
173 if (ts90khz < _prevWrapTimestamp) { in CheckForWrapArounds()
177 if (static_cast<int32_t>(ts90khz - _prevWrapTimestamp) > 0) { in CheckForWrapArounds()
185 if (static_cast<int32_t>(_prevWrapTimestamp - ts90khz) > 0) { in CheckForWrapArounds()
190 _prevWrapTimestamp = ts90khz; in CheckForWrapArounds()
Dtimestamp_extrapolator.h24 void Update(int64_t tMs, uint32_t ts90khz);
29 void CheckForWrapArounds(uint32_t ts90khz);