Searched refs:sync_offset_ms (Results 1 – 11 of 11) sorted by relevance
/external/webrtc/video/ |
D | receive_statistics_proxy2.cc | 224 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()
|
D | receive_statistics_proxy.cc | 205 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()
|
D | video_receive_stream.cc | 513 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()
|
D | video_receive_stream2.cc | 492 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()
|
D | receive_statistics_proxy.h | 56 int64_t sync_offset_ms,
|
D | receive_statistics_proxy2.h | 72 int64_t sync_offset_ms,
|
D | receive_statistics_proxy_unittest.cc | 686 statistics_proxy_->GetStats().sync_offset_ms); in TEST_F() 688 EXPECT_EQ(kSyncOffsetMs, statistics_proxy_->GetStats().sync_offset_ms); in TEST_F()
|
D | receive_statistics_proxy2_unittest.cc | 715 statistics_proxy_->GetStats().sync_offset_ms); in TEST_F() 717 EXPECT_EQ(kSyncOffsetMs, FlushAndGetStats().sync_offset_ms); in TEST_F()
|
/external/webrtc/call/ |
D | video_receive_stream.cc | 66 ss << "sync_offset_ms: " << sync_offset_ms << ", "; in ToString()
|
D | video_receive_stream.h | 142 int sync_offset_ms = std::numeric_limits<int>::max();
|
D | call_perf_tests.cc | 118 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()
|