Home
last modified time | relevance | path

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

/external/webrtc/modules/
Dmodule_common_types_unittest.cc47 TEST(IsNewerTimestamp, Equal) { in TEST() argument
48 EXPECT_FALSE(IsNewerTimestamp(0x00000001, 0x000000001)); in TEST()
51 TEST(IsNewerTimestamp, NoWrap) { in TEST() argument
52 EXPECT_TRUE(IsNewerTimestamp(0xFFFFFFFF, 0xFFFFFFFE)); in TEST()
53 EXPECT_TRUE(IsNewerTimestamp(0x00000001, 0x00000000)); in TEST()
54 EXPECT_TRUE(IsNewerTimestamp(0x00010000, 0x0000FFFF)); in TEST()
57 TEST(IsNewerTimestamp, ForwardWrap) { in TEST() argument
58 EXPECT_TRUE(IsNewerTimestamp(0x00000000, 0xFFFFFFFF)); in TEST()
59 EXPECT_TRUE(IsNewerTimestamp(0x00000000, 0xFFFF0000)); in TEST()
60 EXPECT_TRUE(IsNewerTimestamp(0x0000FFFF, 0xFFFFFFFF)); in TEST()
[all …]
/external/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.cc148 if (!IsNewerTimestamp(timestamp, last_timestamp_) || in Update()
Dneteq_unittest.cc596 } while (!IsNewerTimestamp(out_frame_.timestamp_, first_speech_timestamp)); in TEST_F()
/external/webrtc/modules/include/
Dmodule_common_types_public.h95 inline bool IsNewerTimestamp(uint32_t timestamp, uint32_t prev_timestamp) { in IsNewerTimestamp() function
107 return IsNewerTimestamp(timestamp1, timestamp2) ? timestamp1 : timestamp2; in LatestTimestamp()
/external/webrtc/modules/video_coding/
Dtimestamp_map.cc46 } else if (IsNewerTimestamp(ring_buffer_[next_pop_idx_].timestamp, in Pop()
Ddecoding_state.cc61 return !IsNewerTimestamp(frame->Timestamp(), time_stamp_); in IsOldFrame()
68 return !IsNewerTimestamp(packet->timestamp, time_stamp_); in IsOldPacket()
Djitter_buffer.h54 return IsNewerTimestamp(timestamp2, timestamp1); in operator()
Djitter_buffer.cc524 if (IsNewerTimestamp(decodable_frame->Timestamp(), frame.Timestamp())) { in IsContinuous()
557 if (IsNewerTimestamp(original_decoded_state.time_stamp(), in FindAndInsertContinuousFramesWithState()
/external/webrtc/video/end_to_end_tests/
Drtp_rtcp_tests.cc455 IsNewerTimestamp(timestamp, *last_observed_timestamp_); in TEST_F()
459 EXPECT_TRUE(IsNewerTimestamp( in TEST_F()
Dmulti_codec_receive_tests.cc54 if (IsNewerTimestamp(*it, timestamp)) in RemoveOlderOrEqual()
/external/webrtc/video/
Dframe_encode_metadata_writer.cc260 IsNewerTimestamp(encoded_image->Timestamp(), in ExtractEncodeStartTimeAndFillMetadata()
Dsend_statistics_proxy.h209 return IsNewerTimestamp(ts2, ts1); in operator()
Dvideo_send_stream_tests.cc3496 IsNewerTimestamp(rtp_packet.Timestamp(), last_packet_timestamp_); in CompareConsecutiveFrames()
/external/webrtc/modules/audio_coding/acm2/
Daudio_coding_module.cc242 RTC_DCHECK(IsNewerTimestamp(input_data.input_timestamp, last_timestamp_)) in Encode()