Home
last modified time | relevance | path

Searched refs:IsNewerTimestamp (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/webrtc/modules/
Dmodule_common_types_unittest.cc46 TEST(IsNewerTimestamp, Equal) { in TEST() argument
47 EXPECT_FALSE(IsNewerTimestamp(0x00000001, 0x000000001)); in TEST()
50 TEST(IsNewerTimestamp, NoWrap) { in TEST() argument
51 EXPECT_TRUE(IsNewerTimestamp(0xFFFFFFFF, 0xFFFFFFFE)); in TEST()
52 EXPECT_TRUE(IsNewerTimestamp(0x00000001, 0x00000000)); in TEST()
53 EXPECT_TRUE(IsNewerTimestamp(0x00010000, 0x0000FFFF)); in TEST()
56 TEST(IsNewerTimestamp, ForwardWrap) { in TEST() argument
57 EXPECT_TRUE(IsNewerTimestamp(0x00000000, 0xFFFFFFFF)); in TEST()
58 EXPECT_TRUE(IsNewerTimestamp(0x00000000, 0xFFFF0000)); in TEST()
59 EXPECT_TRUE(IsNewerTimestamp(0x0000FFFF, 0xFFFFFFFF)); in TEST()
[all …]
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dpacket_buffer.h143 return IsNewerTimestamp(timestamp_limit, timestamp) && in IsObsoleteTimestamp()
145 IsNewerTimestamp(timestamp, timestamp_limit - horizon_samples)); in IsObsoleteTimestamp()
Ddelay_manager.cc90 if (!IsNewerTimestamp(timestamp, last_timestamp_) || in Update()
/external/webrtc/webrtc/modules/video_coding/
Ddecoding_state.cc57 return !IsNewerTimestamp(frame->TimeStamp(), time_stamp_); in IsOldFrame()
64 return !IsNewerTimestamp(packet->timestamp, time_stamp_); in IsOldPacket()
Dtimestamp_map.cc46 } else if (IsNewerTimestamp(ring_buffer_[next_pop_idx_].timestamp, in Pop()
Djitter_buffer.cc140 if (it->first == timestamp || IsNewerTimestamp(timestamp, it->first)) { in Find()
161 if (ss_map_.empty() || !IsNewerTimestamp(timestamp, ss_map_.begin()->first)) in TimeForCleanup()
862 if (IsNewerTimestamp(decodable_frame->TimeStamp(), frame.TimeStamp())) { in IsContinuous()
895 if (IsNewerTimestamp(original_decoded_state.time_stamp(), in FindAndInsertContinuousFramesWithState()
Djitter_buffer.h55 return IsNewerTimestamp(timestamp2, timestamp1); in operator()
/external/webrtc/webrtc/modules/include/
Dmodule_common_types.h744 inline bool IsNewerTimestamp(uint32_t timestamp, uint32_t prev_timestamp) { in IsNewerTimestamp() function
764 return IsNewerTimestamp(timestamp1, timestamp2) ? timestamp1 : timestamp2; in LatestTimestamp()
/external/webrtc/webrtc/video/
Dvideo_send_stream_tests.cc2093 IsNewerTimestamp(header.timestamp, last_header_.timestamp); in CompareConsecutiveFrames()
/external/webrtc/webrtc/voice_engine/
Dchannel.cc3918 if (!IsNewerTimestamp(rtp_timestamp, jitter_buffer_playout_timestamp_) || in UpdatePacketDelay()