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

Unified Diff: webrtc/video_receive_stream.h

Issue 1756193005: Add histogram stats for AV sync stream offset: (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: mark constructor explicit 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
« no previous file with comments | « webrtc/video/vie_sync_module.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video_receive_stream.h
diff --git a/webrtc/video_receive_stream.h b/webrtc/video_receive_stream.h
index 51d842616b467ff83da460aa46d1e8d60fbc8f59..249523c29b1e142b0ba03d0018f4effa70fd9f54 100644
--- a/webrtc/video_receive_stream.h
+++ b/webrtc/video_receive_stream.h
@@ -11,6 +11,7 @@
#ifndef WEBRTC_VIDEO_RECEIVE_STREAM_H_
#define WEBRTC_VIDEO_RECEIVE_STREAM_H_
+#include <limits>
#include <map>
#include <string>
#include <vector>
@@ -66,6 +67,8 @@ class VideoReceiveStream : public ReceiveStream {
int total_bitrate_bps = 0;
int discarded_packets = 0;
+ int sync_offset_ms = std::numeric_limits<int>::max();
+
uint32_t ssrc = 0;
std::string c_name;
StreamDataCounters rtp_stats;
« no previous file with comments | « webrtc/video/vie_sync_module.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698