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

Unified Diff: webrtc/modules/rtp_rtcp/include/rtp_rtcp.h

Issue 1571283002: Fixes a bug which incorrectly logs incoming RTCP as outgoing. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added RTC_DISALLOW_IMPLICT_CONSTRUCTORS Created 4 years, 11 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/modules/rtp_rtcp/include/rtp_rtcp.h
diff --git a/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h b/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h
index 6a7022a94cc66bda08f0749b1c1761b0d7da1b08..d9d03e686b7245934f50b0f9bc13984f1f8258e2 100644
--- a/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h
+++ b/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h
@@ -24,6 +24,8 @@ class ReceiveStatistics;
class RemoteBitrateEstimator;
class RtpReceiver;
class Transport;
+class RtcEventLog;
+
namespace rtcp {
class TransportFeedback;
}
@@ -73,6 +75,9 @@ class RtpRtcp : public Module {
BitrateStatisticsObserver* send_bitrate_observer;
FrameCountObserver* send_frame_count_observer;
SendSideDelayObserver* send_side_delay_observer;
+ RtcEventLog* event_log;
+
+ RTC_DISALLOW_COPY_AND_ASSIGN(Configuration);
the sun 2016/01/11 15:59:57 This is a POD, right? Unless it owns any of these
terelius 2016/01/11 18:39:47 Not sure it is technically POD since the construct
the sun 2016/01/12 12:05:21 Acknowledged.
};
/*

Powered by Google App Engine
This is Rietveld 408576698