OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 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 |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 * |
| 10 */ |
| 11 |
| 12 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_REPORT_BLOCK_H_ |
| 13 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_REPORT_BLOCK_H_ |
| 14 |
| 15 #include "webrtc/base/basictypes.h" |
| 16 |
| 17 namespace webrtc { |
| 18 namespace rtcp { |
| 19 |
| 20 class ReportBlock { |
| 21 public: |
| 22 static const size_t kLength = 24; |
| 23 |
| 24 ReportBlock(); |
| 25 ~ReportBlock() {} |
| 26 |
| 27 bool Parse(const uint8_t* buffer, size_t length); |
| 28 |
| 29 // Fills buffer with the ReportBlock. |
| 30 // Returns the number of bytes consumed. |
| 31 // Returns 0 on error. |
| 32 size_t Create(uint8_t* buffer) const; |
| 33 |
| 34 void To(uint32_t ssrc) { source_ssrc_ = ssrc; } |
| 35 void WithFractionLost(uint8_t fraction_lost) { |
| 36 fraction_lost_ = fraction_lost; |
| 37 } |
| 38 void WithCumulativeLost(uint32_t cumulative_lost) { |
| 39 cumulative_lost_ = cumulative_lost; |
| 40 } |
| 41 void WithExtHighestSeqNum(uint32_t ext_highest_seq_num) { |
| 42 extended_high_seq_num_ = ext_highest_seq_num; |
| 43 } |
| 44 void WithJitter(uint32_t jitter) { jitter_ = jitter; } |
| 45 void WithLastSr(uint32_t last_sr) { last_sr_ = last_sr; } |
| 46 void WithDelayLastSr(uint32_t delay_last_sr) { |
| 47 delay_since_last_sr_ = delay_last_sr; |
| 48 } |
| 49 |
| 50 uint32_t source_ssrc() const { return source_ssrc_; } |
| 51 uint8_t fraction_lost() const { return fraction_lost_; } |
| 52 uint32_t cumulative_lost() const { return cumulative_lost_; } |
| 53 uint32_t extended_high_seq_num() const { return extended_high_seq_num_; } |
| 54 uint32_t jitter() const { return jitter_; } |
| 55 uint32_t last_sr() const { return last_sr_; } |
| 56 uint32_t delay_since_last_sr() const { return delay_since_last_sr_; } |
| 57 |
| 58 private: |
| 59 uint32_t source_ssrc_; |
| 60 uint8_t fraction_lost_; |
| 61 uint32_t cumulative_lost_; |
| 62 uint32_t extended_high_seq_num_; |
| 63 uint32_t jitter_; |
| 64 uint32_t last_sr_; |
| 65 uint32_t delay_since_last_sr_; |
| 66 }; |
| 67 |
| 68 } // namespace rtcp |
| 69 } // namespace webrtc |
| 70 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_REPORT_BLOCK_H_ |
OLD | NEW |