Home
last modified time | relevance | path

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

/external/webrtc/modules/rtp_rtcp/source/
Dremote_ntp_time_estimator_unittest.cc102 int64_t capture_ntp_time_ms = local_clock_.CurrentNtpInMilliseconds(); in TEST_F() local
114 EXPECT_EQ(capture_ntp_time_ms, estimator_->Estimate(rtp_timestamp)); in TEST_F()
128 int64_t capture_ntp_time_ms = local_clock_.CurrentNtpInMilliseconds(); in TEST_F() local
130 EXPECT_EQ(capture_ntp_time_ms, estimator_->Estimate(rtp_timestamp)); in TEST_F()
143 capture_ntp_time_ms = local_clock_.CurrentNtpInMilliseconds(); in TEST_F()
146 EXPECT_EQ(capture_ntp_time_ms, estimator_->Estimate(rtp_timestamp)); in TEST_F()
/external/webrtc/video/
Dvideo_stream_encoder.cc950 int64_t capture_ntp_time_ms; in OnFrame() local
952 capture_ntp_time_ms = video_frame.ntp_time_ms(); in OnFrame()
954 capture_ntp_time_ms = video_frame.render_time_ms() + delta_ntp_internal_ms_; in OnFrame()
956 capture_ntp_time_ms = current_time_ms + delta_ntp_internal_ms_; in OnFrame()
958 incoming_frame.set_ntp_time_ms(capture_ntp_time_ms); in OnFrame()