Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Unified Diff: webrtc/video/video_receive_stream.cc

Issue 1756193005: Add histogram stats for AV sync stream offset: (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/video/video_receive_stream.cc
diff --git a/webrtc/video/video_receive_stream.cc b/webrtc/video/video_receive_stream.cc
index 983e28f244eac489bfe537c87ef0d3a32ba65157..baa4e3dfd5d867c672ac9a10f2a7a34d8fe5f79d 100644
--- a/webrtc/video/video_receive_stream.cc
+++ b/webrtc/video/video_receive_stream.cc
@@ -388,7 +388,8 @@ int VideoReceiveStream::RenderFrame(const uint32_t /*stream_id*/,
video_frame,
video_frame.render_time_ms() - clock_->TimeInMilliseconds());
- stats_proxy_.OnRenderedFrame(video_frame.width(), video_frame.height());
+ stats_proxy_.OnRenderedFrame(video_frame.width(), video_frame.height(),
+ vie_sync_.GetStreamSyncOffsetInMs(video_frame));
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698