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

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, 9 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 32fb3e5cc86bc3c54ab170134df1134406efa58b..4f078153f5ed6b2700063383ea947e138ad169b5 100644
--- a/webrtc/video/video_receive_stream.cc
+++ b/webrtc/video/video_receive_stream.cc
@@ -380,6 +380,10 @@ void VideoReceiveStream::FrameCallback(VideoFrame* video_frame) {
int VideoReceiveStream::RenderFrame(const uint32_t /*stream_id*/,
const VideoFrame& video_frame) {
+ int64_t sync_offset_ms;
+ if (vie_sync_.GetStreamSyncOffsetInMs(video_frame, &sync_offset_ms))
+ stats_proxy_.OnSyncOffsetUpdated(sync_offset_ms);
stefan-webrtc 2016/03/09 15:59:30 Nice, thanks! I wonder if we instead should expos
åsapersson 2016/03/10 09:08:35 Sounds good. Maybe as a later improvement?
stefan-webrtc 2016/03/10 14:25:09 Yes
+
// TODO(pbos): Wire up config_.render->IsTextureSupported() and convert if not
// supported. Or provide methods for converting a texture frame in
// VideoFrame.

Powered by Google App Engine
This is Rietveld 408576698