danilchap | f8385ad | 2015-11-27 05:36:09 -0800 | [diff] [blame] | 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #include "modules/rtp_rtcp/source/rtcp_packet/psfb.h" |
danilchap | f8385ad | 2015-11-27 05:36:09 -0800 | [diff] [blame] | 12 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 13 | #include "modules/rtp_rtcp/source/byte_io.h" |
danilchap | f8385ad | 2015-11-27 05:36:09 -0800 | [diff] [blame] | 14 | |
| 15 | namespace webrtc { |
| 16 | namespace rtcp { |
danilchap | 0fc37d7 | 2016-05-31 01:36:37 -0700 | [diff] [blame] | 17 | constexpr uint8_t Psfb::kPacketType; |
Elad Alon | 74f0a51 | 2019-02-23 22:16:52 +0100 | [diff] [blame] | 18 | constexpr uint8_t Psfb::kAfbMessageType; |
danilchap | 0fc37d7 | 2016-05-31 01:36:37 -0700 | [diff] [blame] | 19 | constexpr size_t Psfb::kCommonFeedbackLength; |
danilchap | f8385ad | 2015-11-27 05:36:09 -0800 | [diff] [blame] | 20 | // RFC 4585: Feedback format. |
| 21 | // |
| 22 | // Common packet format: |
| 23 | // |
| 24 | // 0 1 2 3 |
| 25 | // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 |
| 26 | // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 27 | // |V=2|P| FMT | PT | length | |
| 28 | // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 29 | // 0 | SSRC of packet sender | |
| 30 | // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 31 | // 4 | SSRC of media source | |
| 32 | // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 33 | // : Feedback Control Information (FCI) : |
| 34 | // : : |
| 35 | |
| 36 | void Psfb::ParseCommonFeedback(const uint8_t* payload) { |
Danil Chapovalov | cbbfd08 | 2019-10-10 09:56:29 +0200 | [diff] [blame] | 37 | SetSenderSsrc(ByteReader<uint32_t>::ReadBigEndian(&payload[0])); |
| 38 | SetMediaSsrc(ByteReader<uint32_t>::ReadBigEndian(&payload[4])); |
danilchap | f8385ad | 2015-11-27 05:36:09 -0800 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | void Psfb::CreateCommonFeedback(uint8_t* payload) const { |
Danil Chapovalov | cbbfd08 | 2019-10-10 09:56:29 +0200 | [diff] [blame] | 42 | ByteWriter<uint32_t>::WriteBigEndian(&payload[0], sender_ssrc()); |
| 43 | ByteWriter<uint32_t>::WriteBigEndian(&payload[4], media_ssrc()); |
danilchap | f8385ad | 2015-11-27 05:36:09 -0800 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | } // namespace rtcp |
| 47 | } // namespace webrtc |