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

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

Issue 2366563002: Move class RTCPHelp::RTCPPacketInformation into RTCPReceiver (Closed)
Patch Set: nit Created 4 years, 3 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.h
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h b/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h
index af97f9f5b3d09b534fa4d7d60e6d015799499799..043f3be5a1ff5045ff8639e735c585801ae57bcc 100644
--- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.h
@@ -12,18 +12,13 @@
#define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_HELP_H_
#include <map>
-#include <memory>
#include <vector>
-#include "webrtc/base/constructormagic.h"
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
#include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h"
#include "webrtc/typedefs.h"
namespace webrtc {
-namespace rtcp {
-class TransportFeedback;
-}
namespace RTCPHelp {
class RTCPReportBlockInformation {
@@ -43,38 +38,6 @@ class RTCPReportBlockInformation {
uint32_t numAverageCalcs;
};
-class RTCPPacketInformation {
- public:
- RTCPPacketInformation();
- ~RTCPPacketInformation();
-
- void AddReportInfo(const RTCPReportBlockInformation& report_block_info);
-
- uint32_t rtcpPacketTypeFlags; // RTCPPacketTypeFlags bit field
- uint32_t remoteSSRC;
-
- std::vector<uint16_t> nackSequenceNumbers;
-
- ReportBlockList report_blocks;
- int64_t rtt;
-
- uint8_t sliPictureId;
- uint64_t rpsiPictureId;
- uint32_t receiverEstimatedMaxBitrate;
-
- uint32_t ntp_secs;
- uint32_t ntp_frac;
- uint32_t rtp_timestamp;
-
- uint32_t xr_originator_ssrc;
- bool xr_dlrr_item;
-
- std::unique_ptr<rtcp::TransportFeedback> transport_feedback_;
-
- private:
- RTC_DISALLOW_COPY_AND_ASSIGN(RTCPPacketInformation);
-};
-
class RTCPReceiveInformation {
public:
RTCPReceiveInformation();
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc ('k') | webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698