Searched refs:IsNewerTimestamp (Results 1 – 10 of 10) sorted by relevance
/external/webrtc/webrtc/modules/ |
D | module_common_types_unittest.cc | 46 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/ |
D | packet_buffer.h | 143 return IsNewerTimestamp(timestamp_limit, timestamp) && in IsObsoleteTimestamp() 145 IsNewerTimestamp(timestamp, timestamp_limit - horizon_samples)); in IsObsoleteTimestamp()
|
D | delay_manager.cc | 90 if (!IsNewerTimestamp(timestamp, last_timestamp_) || in Update()
|
/external/webrtc/webrtc/modules/video_coding/ |
D | decoding_state.cc | 57 return !IsNewerTimestamp(frame->TimeStamp(), time_stamp_); in IsOldFrame() 64 return !IsNewerTimestamp(packet->timestamp, time_stamp_); in IsOldPacket()
|
D | timestamp_map.cc | 46 } else if (IsNewerTimestamp(ring_buffer_[next_pop_idx_].timestamp, in Pop()
|
D | jitter_buffer.cc | 140 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()
|
D | jitter_buffer.h | 55 return IsNewerTimestamp(timestamp2, timestamp1); in operator()
|
/external/webrtc/webrtc/modules/include/ |
D | module_common_types.h | 744 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/ |
D | video_send_stream_tests.cc | 2093 IsNewerTimestamp(header.timestamp, last_header_.timestamp); in CompareConsecutiveFrames()
|
/external/webrtc/webrtc/voice_engine/ |
D | channel.cc | 3918 if (!IsNewerTimestamp(rtp_timestamp, jitter_buffer_playout_timestamp_) || in UpdatePacketDelay()
|