Chromium Code Reviews

Unified Diff: webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h

Issue 1213603002: Remove ResetStatistics from RTP feedback. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove more data counter resetting. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h
diff --git a/webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h b/webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h
index 1587762763b636d5faf22e962af4f25fd728e97e..ed7dfe06a09ed946929dd7e0f02203db7c035365 100644
--- a/webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h
+++ b/webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h
@@ -252,8 +252,6 @@ public:
virtual void OnIncomingCSRCChanged( const int32_t id,
const uint32_t CSRC,
const bool added) = 0;
-
- virtual void ResetStatistics(uint32_t ssrc) = 0;
};
class RtpAudioFeedback {
@@ -323,8 +321,6 @@ class NullRtpFeedback : public RtpFeedback {
void OnIncomingCSRCChanged(const int32_t id,
const uint32_t CSRC,
const bool added) override {}
-
- void ResetStatistics(uint32_t ssrc) override {}
};
// Null object version of RtpData.

Powered by Google App Engine