Home
last modified time | relevance | path

Searched refs:CheckForWrapArounds (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
Drtp_to_ntp_unittest.cc17 EXPECT_EQ(0, CheckForWrapArounds(0xFFFFFFFF, 0xFFFFFFFE)); in TEST()
18 EXPECT_EQ(0, CheckForWrapArounds(1, 0)); in TEST()
19 EXPECT_EQ(0, CheckForWrapArounds(0x00010000, 0x0000FFFF)); in TEST()
23 EXPECT_EQ(1, CheckForWrapArounds(0, 0xFFFFFFFF)); in TEST()
24 EXPECT_EQ(1, CheckForWrapArounds(0, 0xFFFF0000)); in TEST()
25 EXPECT_EQ(1, CheckForWrapArounds(0x0000FFFF, 0xFFFFFFFF)); in TEST()
26 EXPECT_EQ(1, CheckForWrapArounds(0x0000FFFF, 0xFFFF0000)); in TEST()
30 EXPECT_EQ(-1, CheckForWrapArounds(0xFFFFFFFF, 0)); in TEST()
31 EXPECT_EQ(-1, CheckForWrapArounds(0xFFFF0000, 0)); in TEST()
32 EXPECT_EQ(-1, CheckForWrapArounds(0xFFFFFFFF, 0x0000FFFF)); in TEST()
[all …]
Dtimestamp_extrapolator.cc83 CheckForWrapArounds(ts90khz); in Update()
153 CheckForWrapArounds(timestamp90khz); in ExtrapolateLocalTime()
187 TimestampExtrapolator::CheckForWrapArounds(uint32_t ts90khz) in CheckForWrapArounds() function in webrtc::TimestampExtrapolator
Drtp_to_ntp.cc48 int64_t wraps = CheckForWrapArounds(new_timestamp, old_timestamp); in CompensateForWrapAround()
133 int CheckForWrapArounds(uint32_t new_timestamp, uint32_t old_timestamp) { in CheckForWrapArounds() function
/external/webrtc/webrtc/modules/video_coding/
Dinter_frame_delay.cc42 CheckForWrapArounds(timestamp); in CalculateDelay()
87 void VCMInterFrameDelay::CheckForWrapArounds(uint32_t timestamp) { in CheckForWrapArounds() function in webrtc::VCMInterFrameDelay
Dinter_frame_delay.h53 void CheckForWrapArounds(uint32_t timestamp);
/external/webrtc/webrtc/system_wrappers/include/
Drtp_to_ntp.h46 int CheckForWrapArounds(uint32_t rtp_timestamp, uint32_t rtcp_rtp_timestamp);
Dtimestamp_extrapolator.h30 void CheckForWrapArounds(uint32_t ts90khz);