OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RECEIVER_REPORT_H_ | 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RECEIVER_REPORT_H_ |
12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RECEIVER_REPORT_H_ | 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RECEIVER_REPORT_H_ |
13 | 13 |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "webrtc/base/basictypes.h" | 16 #include "webrtc/base/basictypes.h" |
17 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" | 17 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" |
18 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" | 18 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" |
19 #include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" | |
20 | 19 |
21 namespace webrtc { | 20 namespace webrtc { |
22 namespace rtcp { | 21 namespace rtcp { |
| 22 class CommonHeader; |
23 | 23 |
24 class ReceiverReport : public RtcpPacket { | 24 class ReceiverReport : public RtcpPacket { |
25 public: | 25 public: |
26 static const uint8_t kPacketType = 201; | 26 static const uint8_t kPacketType = 201; |
27 ReceiverReport() : sender_ssrc_(0) {} | 27 ReceiverReport() : sender_ssrc_(0) {} |
28 | 28 |
29 virtual ~ReceiverReport() {} | 29 ~ReceiverReport() override {} |
30 | 30 |
31 // Parse assumes header is already parsed and validated. | 31 // Parse assumes header is already parsed and validated. |
32 bool Parse(const RTCPUtility::RtcpCommonHeader& header, | 32 bool Parse(const CommonHeader& packet); |
33 const uint8_t* payload); // Size of the payload is in the header. | |
34 | 33 |
35 void From(uint32_t ssrc) { sender_ssrc_ = ssrc; } | 34 void From(uint32_t ssrc) { sender_ssrc_ = ssrc; } |
36 bool WithReportBlock(const ReportBlock& block); | 35 bool WithReportBlock(const ReportBlock& block); |
37 | 36 |
38 uint32_t sender_ssrc() const { return sender_ssrc_; } | 37 uint32_t sender_ssrc() const { return sender_ssrc_; } |
39 const std::vector<ReportBlock>& report_blocks() const { | 38 const std::vector<ReportBlock>& report_blocks() const { |
40 return report_blocks_; | 39 return report_blocks_; |
41 } | 40 } |
42 | 41 |
43 protected: | 42 protected: |
(...skipping 13 matching lines...) Expand all Loading... |
57 | 56 |
58 uint32_t sender_ssrc_; | 57 uint32_t sender_ssrc_; |
59 std::vector<ReportBlock> report_blocks_; | 58 std::vector<ReportBlock> report_blocks_; |
60 | 59 |
61 RTC_DISALLOW_COPY_AND_ASSIGN(ReceiverReport); | 60 RTC_DISALLOW_COPY_AND_ASSIGN(ReceiverReport); |
62 }; | 61 }; |
63 | 62 |
64 } // namespace rtcp | 63 } // namespace rtcp |
65 } // namespace webrtc | 64 } // namespace webrtc |
66 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RECEIVER_REPORT_H_ | 65 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RECEIVER_REPORT_H_ |
OLD | NEW |