Home
last modified time | relevance | path

Searched refs:sync_offset_ms (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/video/
Dreceive_statistics_proxy2.cc224 absl::optional<int> sync_offset_ms = in UpdateHistograms() local
226 if (sync_offset_ms) { in UpdateHistograms()
228 *sync_offset_ms); in UpdateHistograms()
229 log_stream << "WebRTC.Video.AVSyncOffsetInMs " << *sync_offset_ms << '\n'; in UpdateHistograms()
947 int64_t sync_offset_ms, in OnSyncOffsetUpdated() argument
952 ToQueuedTask(task_safety_, [video_playout_ntp_ms, sync_offset_ms, in OnSyncOffsetUpdated()
955 sync_offset_counter_.Add(std::abs(sync_offset_ms)); in OnSyncOffsetUpdated()
956 stats_.sync_offset_ms = sync_offset_ms; in OnSyncOffsetUpdated()
Dreceive_statistics_proxy.cc205 absl::optional<int> sync_offset_ms = in UpdateHistograms() local
207 if (sync_offset_ms) { in UpdateHistograms()
209 *sync_offset_ms); in UpdateHistograms()
210 log_stream << "WebRTC.Video.AVSyncOffsetInMs " << *sync_offset_ms << '\n'; in UpdateHistograms()
834 int64_t sync_offset_ms, in OnSyncOffsetUpdated() argument
837 sync_offset_counter_.Add(std::abs(sync_offset_ms)); in OnSyncOffsetUpdated()
838 stats_.sync_offset_ms = sync_offset_ms; in OnSyncOffsetUpdated()
Dvideo_receive_stream.cc513 int64_t sync_offset_ms; in OnFrame() local
521 &video_playout_ntp_ms, &sync_offset_ms, &estimated_freq_khz)) { in OnFrame()
523 stats_proxy_.OnSyncOffsetUpdated(video_playout_ntp_ms, sync_offset_ms, in OnFrame()
Dvideo_receive_stream2.cc492 int64_t sync_offset_ms; in OnFrame() local
496 &video_playout_ntp_ms, &sync_offset_ms, &estimated_freq_khz)) { in OnFrame()
497 stats_proxy_.OnSyncOffsetUpdated(video_playout_ntp_ms, sync_offset_ms, in OnFrame()
Dreceive_statistics_proxy.h56 int64_t sync_offset_ms,
Dreceive_statistics_proxy2.h72 int64_t sync_offset_ms,
Dreceive_statistics_proxy_unittest.cc686 statistics_proxy_->GetStats().sync_offset_ms); in TEST_F()
688 EXPECT_EQ(kSyncOffsetMs, statistics_proxy_->GetStats().sync_offset_ms); in TEST_F()
Dreceive_statistics_proxy2_unittest.cc715 statistics_proxy_->GetStats().sync_offset_ms); in TEST_F()
717 EXPECT_EQ(kSyncOffsetMs, FlushAndGetStats().sync_offset_ms); in TEST_F()
/external/webrtc/call/
Dvideo_receive_stream.cc66 ss << "sync_offset_ms: " << sync_offset_ms << ", "; in ToString()
Dvideo_receive_stream.h142 int sync_offset_ms = std::numeric_limits<int>::max();
Dcall_perf_tests.cc118 if (stats.sync_offset_ms == std::numeric_limits<int>::max()) in CheckStats()
127 if (std::abs(stats.sync_offset_ms) < kInSyncThresholdMs) { in CheckStats()
138 sync_offset_ms_list_.push_back(stats.sync_offset_ms); in CheckStats()