| OLD | NEW |
| 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 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 class SenderReport : public RtcpPacket { | 25 class SenderReport : public RtcpPacket { |
| 26 public: | 26 public: |
| 27 static const uint8_t kPacketType = 200; | 27 static const uint8_t kPacketType = 200; |
| 28 | 28 |
| 29 SenderReport(); | 29 SenderReport(); |
| 30 ~SenderReport() override {} | 30 ~SenderReport() override {} |
| 31 | 31 |
| 32 // Parse assumes header is already parsed and validated. | 32 // Parse assumes header is already parsed and validated. |
| 33 bool Parse(const CommonHeader& packet); | 33 bool Parse(const CommonHeader& packet); |
| 34 | 34 |
| 35 void SetSenderSsrc(uint32_t ssrc) { sender_ssrc_ = ssrc; } | 35 void From(uint32_t ssrc) { sender_ssrc_ = ssrc; } |
| 36 void SetNtp(NtpTime ntp) { ntp_ = ntp; } | 36 void WithNtp(NtpTime ntp) { ntp_ = ntp; } |
| 37 void SetRtpTimestamp(uint32_t rtp_timestamp) { | 37 void WithRtpTimestamp(uint32_t rtp_timestamp) { |
| 38 rtp_timestamp_ = rtp_timestamp; | 38 rtp_timestamp_ = rtp_timestamp; |
| 39 } | 39 } |
| 40 void SetPacketCount(uint32_t packet_count) { | 40 void WithPacketCount(uint32_t packet_count) { |
| 41 sender_packet_count_ = packet_count; | 41 sender_packet_count_ = packet_count; |
| 42 } | 42 } |
| 43 void SetOctetCount(uint32_t octet_count) { | 43 void WithOctetCount(uint32_t octet_count) { |
| 44 sender_octet_count_ = octet_count; | 44 sender_octet_count_ = octet_count; |
| 45 } | 45 } |
| 46 bool AddReportBlock(const ReportBlock& block); | 46 bool WithReportBlock(const ReportBlock& block); |
| 47 void ClearReportBlocks() { report_blocks_.clear(); } | 47 void ClearReportBlocks() { report_blocks_.clear(); } |
| 48 | 48 |
| 49 uint32_t sender_ssrc() const { return sender_ssrc_; } | 49 uint32_t sender_ssrc() const { return sender_ssrc_; } |
| 50 NtpTime ntp() const { return ntp_; } | 50 NtpTime ntp() const { return ntp_; } |
| 51 uint32_t rtp_timestamp() const { return rtp_timestamp_; } | 51 uint32_t rtp_timestamp() const { return rtp_timestamp_; } |
| 52 uint32_t sender_packet_count() const { return sender_packet_count_; } | 52 uint32_t sender_packet_count() const { return sender_packet_count_; } |
| 53 uint32_t sender_octet_count() const { return sender_octet_count_; } | 53 uint32_t sender_octet_count() const { return sender_octet_count_; } |
| 54 | 54 |
| 55 const std::vector<ReportBlock>& report_blocks() const { | 55 const std::vector<ReportBlock>& report_blocks() const { |
| 56 return report_blocks_; | 56 return report_blocks_; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 77 uint32_t sender_packet_count_; | 77 uint32_t sender_packet_count_; |
| 78 uint32_t sender_octet_count_; | 78 uint32_t sender_octet_count_; |
| 79 std::vector<ReportBlock> report_blocks_; | 79 std::vector<ReportBlock> report_blocks_; |
| 80 | 80 |
| 81 RTC_DISALLOW_COPY_AND_ASSIGN(SenderReport); | 81 RTC_DISALLOW_COPY_AND_ASSIGN(SenderReport); |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace rtcp | 84 } // namespace rtcp |
| 85 } // namespace webrtc | 85 } // namespace webrtc |
| 86 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_SENDER_REPORT_H_ | 86 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_SENDER_REPORT_H_ |
| OLD | NEW |