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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtcp_packet/sender_report.h

Issue 2991623002: Add SetReportBlocks to rtcp Sender/Receive Report classes. (Closed)
Patch Set: fix typo Created 3 years, 5 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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_SENDER_REPORT_H_ 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_SENDER_REPORT_H_
12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_SENDER_REPORT_H_ 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_SENDER_REPORT_H_
13 13
14 #include <vector> 14 #include <vector>
15 15
16 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" 16 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h"
17 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" 17 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h"
18 #include "webrtc/system_wrappers/include/ntp_time.h" 18 #include "webrtc/system_wrappers/include/ntp_time.h"
19 19
20 namespace webrtc { 20 namespace webrtc {
21 namespace rtcp { 21 namespace rtcp {
22 class CommonHeader; 22 class CommonHeader;
23 23
24 class SenderReport : public RtcpPacket { 24 class SenderReport : public RtcpPacket {
25 public: 25 public:
26 static constexpr uint8_t kPacketType = 200; 26 static constexpr uint8_t kPacketType = 200;
27 static constexpr size_t kMaxNumberOfReportBlocks = 0x1f;
27 28
28 SenderReport(); 29 SenderReport();
29 ~SenderReport() override; 30 ~SenderReport() override;
30 31
31 // Parse assumes header is already parsed and validated. 32 // Parse assumes header is already parsed and validated.
32 bool Parse(const CommonHeader& packet); 33 bool Parse(const CommonHeader& packet);
33 34
34 void SetSenderSsrc(uint32_t ssrc) { sender_ssrc_ = ssrc; } 35 void SetSenderSsrc(uint32_t ssrc) { sender_ssrc_ = ssrc; }
35 void SetNtp(NtpTime ntp) { ntp_ = ntp; } 36 void SetNtp(NtpTime ntp) { ntp_ = ntp; }
36 void SetRtpTimestamp(uint32_t rtp_timestamp) { 37 void SetRtpTimestamp(uint32_t rtp_timestamp) {
37 rtp_timestamp_ = rtp_timestamp; 38 rtp_timestamp_ = rtp_timestamp;
38 } 39 }
39 void SetPacketCount(uint32_t packet_count) { 40 void SetPacketCount(uint32_t packet_count) {
40 sender_packet_count_ = packet_count; 41 sender_packet_count_ = packet_count;
41 } 42 }
42 void SetOctetCount(uint32_t octet_count) { 43 void SetOctetCount(uint32_t octet_count) {
43 sender_octet_count_ = octet_count; 44 sender_octet_count_ = octet_count;
44 } 45 }
45 bool AddReportBlock(const ReportBlock& block); 46 bool AddReportBlock(const ReportBlock& block);
47 bool SetReportBlocks(std::vector<ReportBlock> blocks);
46 void ClearReportBlocks() { report_blocks_.clear(); } 48 void ClearReportBlocks() { report_blocks_.clear(); }
47 49
48 uint32_t sender_ssrc() const { return sender_ssrc_; } 50 uint32_t sender_ssrc() const { return sender_ssrc_; }
49 NtpTime ntp() const { return ntp_; } 51 NtpTime ntp() const { return ntp_; }
50 uint32_t rtp_timestamp() const { return rtp_timestamp_; } 52 uint32_t rtp_timestamp() const { return rtp_timestamp_; }
51 uint32_t sender_packet_count() const { return sender_packet_count_; } 53 uint32_t sender_packet_count() const { return sender_packet_count_; }
52 uint32_t sender_octet_count() const { return sender_octet_count_; } 54 uint32_t sender_octet_count() const { return sender_octet_count_; }
53 55
54 const std::vector<ReportBlock>& report_blocks() const { 56 const std::vector<ReportBlock>& report_blocks() const {
55 return report_blocks_; 57 return report_blocks_;
56 } 58 }
57 59
58 size_t BlockLength() const override; 60 size_t BlockLength() const override;
59 61
60 bool Create(uint8_t* packet, 62 bool Create(uint8_t* packet,
61 size_t* index, 63 size_t* index,
62 size_t max_length, 64 size_t max_length,
63 RtcpPacket::PacketReadyCallback* callback) const override; 65 RtcpPacket::PacketReadyCallback* callback) const override;
64 66
65 private: 67 private:
66 static const size_t kMaxNumberOfReportBlocks = 0x1f;
67 const size_t kSenderBaseLength = 24; 68 const size_t kSenderBaseLength = 24;
68 69
69 uint32_t sender_ssrc_; 70 uint32_t sender_ssrc_;
70 NtpTime ntp_; 71 NtpTime ntp_;
71 uint32_t rtp_timestamp_; 72 uint32_t rtp_timestamp_;
72 uint32_t sender_packet_count_; 73 uint32_t sender_packet_count_;
73 uint32_t sender_octet_count_; 74 uint32_t sender_octet_count_;
74 std::vector<ReportBlock> report_blocks_; 75 std::vector<ReportBlock> report_blocks_;
75 }; 76 };
76 77
77 } // namespace rtcp 78 } // namespace rtcp
78 } // namespace webrtc 79 } // namespace webrtc
79 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_SENDER_REPORT_H_ 80 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_SENDER_REPORT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698