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

Unified Diff: webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc

Issue 2390643002: Move RTCPHelp::RTCPReportBlockInformation into RTCPReceiver (Closed)
Patch Set: renames Created 4 years, 2 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/source/rtcp_receiver_help.cc
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc b/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc
deleted file mode 100644
index ecfeb4fc837ad1cb193110ec0c9013eff72a98cb..0000000000000000000000000000000000000000
--- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#include "webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h"
-
-#include <assert.h> // assert
-#include <string.h> // memset
-
-#include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h"
-#include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
-
-namespace webrtc {
-namespace RTCPHelp {
-
-RTCPReportBlockInformation::RTCPReportBlockInformation()
- : remoteReceiveBlock(),
- remoteMaxJitter(0),
- RTT(0),
- minRTT(0),
- maxRTT(0),
- avgRTT(0),
- numAverageCalcs(0) {
- memset(&remoteReceiveBlock, 0, sizeof(remoteReceiveBlock));
-}
-
-RTCPReportBlockInformation::~RTCPReportBlockInformation() {}
-
-} // namespace RTCPHelp
-} // namespace webrtc
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h ('k') | webrtc/modules/rtp_rtcp/source/rtcp_receiver_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698