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

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: 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
« webrtc/video/video_receive_stream.cc ('K') | « 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..b37417782e9f61d639a9f160fd4807b680766a61 100644
--- a/webrtc/video_receive_stream.h
+++ b/webrtc/video_receive_stream.h
@@ -11,6 +11,8 @@
#ifndef WEBRTC_VIDEO_RECEIVE_STREAM_H_
#define WEBRTC_VIDEO_RECEIVE_STREAM_H_
+#include <limits.h>
+
#include <map>
#include <string>
#include <vector>
@@ -66,6 +68,8 @@ class VideoReceiveStream : public ReceiveStream {
int total_bitrate_bps = 0;
int discarded_packets = 0;
+ int sync_offset_ms = INT_MIN;
stefan-webrtc 2016/03/09 15:59:30 std::numeric_limits<int>::max()
åsapersson 2016/03/10 09:08:35 Done.
stefan-webrtc 2016/03/10 14:25:09 Or min if you wanted that. I didn't see it was MIN
+
uint32_t ssrc = 0;
std::string c_name;
StreamDataCounters rtp_stats;
« webrtc/video/video_receive_stream.cc ('K') | « webrtc/video/vie_sync_module.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698