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 |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 } | 297 } |
298 | 298 |
299 void TransportFeedback::WithPacketSenderSsrc(uint32_t ssrc) { | 299 void TransportFeedback::WithPacketSenderSsrc(uint32_t ssrc) { |
300 packet_sender_ssrc_ = ssrc; | 300 packet_sender_ssrc_ = ssrc; |
301 } | 301 } |
302 | 302 |
303 void TransportFeedback::WithMediaSourceSsrc(uint32_t ssrc) { | 303 void TransportFeedback::WithMediaSourceSsrc(uint32_t ssrc) { |
304 media_source_ssrc_ = ssrc; | 304 media_source_ssrc_ = ssrc; |
305 } | 305 } |
306 | 306 |
| 307 uint32_t TransportFeedback::GetPacketSenderSsrc() const { |
| 308 return packet_sender_ssrc_; |
| 309 } |
| 310 |
| 311 uint32_t TransportFeedback::GetMediaSourceSsrc() const { |
| 312 return media_source_ssrc_; |
| 313 } |
307 void TransportFeedback::WithBase(uint16_t base_sequence, | 314 void TransportFeedback::WithBase(uint16_t base_sequence, |
308 int64_t ref_timestamp_us) { | 315 int64_t ref_timestamp_us) { |
309 DCHECK_EQ(-1, base_seq_); | 316 DCHECK_EQ(-1, base_seq_); |
310 DCHECK_NE(-1, ref_timestamp_us); | 317 DCHECK_NE(-1, ref_timestamp_us); |
311 base_seq_ = base_sequence; | 318 base_seq_ = base_sequence; |
312 last_seq_ = base_sequence; | 319 last_seq_ = base_sequence; |
313 base_time_ = ref_timestamp_us / kBaseScaleFactor; | 320 base_time_ = ref_timestamp_us / kBaseScaleFactor; |
314 last_timestamp_ = base_time_ * kBaseScaleFactor; | 321 last_timestamp_ = base_time_ * kBaseScaleFactor; |
315 } | 322 } |
316 | 323 |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 | 531 |
525 uint16_t TransportFeedback::GetBaseSequence() const { | 532 uint16_t TransportFeedback::GetBaseSequence() const { |
526 return base_seq_; | 533 return base_seq_; |
527 } | 534 } |
528 | 535 |
529 int32_t TransportFeedback::GetBaseTime() const { | 536 int32_t TransportFeedback::GetBaseTime() const { |
530 return static_cast<int32_t>(base_time_ & 0x00FFFFFF); | 537 return static_cast<int32_t>(base_time_ & 0x00FFFFFF); |
531 } | 538 } |
532 | 539 |
533 int64_t TransportFeedback::GetBaseTimeUs() const { | 540 int64_t TransportFeedback::GetBaseTimeUs() const { |
534 return GetBaseTime() * kBaseScaleFactor; | 541 return base_time_ * kBaseScaleFactor; |
535 } | 542 } |
536 | 543 |
537 std::vector<TransportFeedback::StatusSymbol> | 544 std::vector<TransportFeedback::StatusSymbol> |
538 TransportFeedback::GetStatusVector() const { | 545 TransportFeedback::GetStatusVector() const { |
539 std::vector<TransportFeedback::StatusSymbol> symbols; | 546 std::vector<TransportFeedback::StatusSymbol> symbols; |
540 for (PacketStatusChunk* chunk : status_chunks_) | 547 for (PacketStatusChunk* chunk : status_chunks_) |
541 chunk->AppendSymbolsTo(&symbols); | 548 chunk->AppendSymbolsTo(&symbols); |
542 int64_t status_count = last_seq_ - base_seq_ + 1; | 549 int64_t status_count = last_seq_ - base_seq_ + 1; |
543 // If packet ends with a vector chunk, it may contain extraneous "packet not | 550 // If packet ends with a vector chunk, it may contain extraneous "packet not |
544 // received"-symbols at the end. Crop any such symbols. | 551 // received"-symbols at the end. Crop any such symbols. |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 "RLE block of size " << rle_chunk->NumSymbols() | 800 "RLE block of size " << rle_chunk->NumSymbols() |
794 << " but only " << max_size << " left to read."; | 801 << " but only " << max_size << " left to read."; |
795 delete rle_chunk; | 802 delete rle_chunk; |
796 return nullptr; | 803 return nullptr; |
797 } | 804 } |
798 return rle_chunk; | 805 return rle_chunk; |
799 } | 806 } |
800 | 807 |
801 } // namespace rtcp | 808 } // namespace rtcp |
802 } // namespace webrtc | 809 } // namespace webrtc |
OLD | NEW |