Chromium Code Reviews

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

Issue 2361853002: Replace const -> constexpr for rtcp Packet Type (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
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/base/constructormagic.h" 17 #include "webrtc/base/constructormagic.h"
18 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" 18 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h"
19 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" 19 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h"
20 20
21 namespace webrtc { 21 namespace webrtc {
22 namespace rtcp { 22 namespace rtcp {
23 class CommonHeader; 23 class CommonHeader;
24 24
25 class ReceiverReport : public RtcpPacket { 25 class ReceiverReport : public RtcpPacket {
26 public: 26 public:
27 static const uint8_t kPacketType = 201; 27 static constexpr uint8_t kPacketType = 201;
28 ReceiverReport() : sender_ssrc_(0) {} 28 ReceiverReport() : sender_ssrc_(0) {}
29
30 ~ReceiverReport() override {} 29 ~ReceiverReport() override {}
31 30
32 // Parse assumes header is already parsed and validated. 31 // Parse assumes header is already parsed and validated.
33 bool Parse(const CommonHeader& packet); 32 bool Parse(const CommonHeader& packet);
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 {
(...skipping 17 matching lines...)
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_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.cc ('k') | webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.cc » ('j') | no next file with comments »

Powered by Google App Engine