Chromium Code Reviews| 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 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" | |
| 12 | |
| 13 #include "webrtc/base/checks.h" | |
| 14 #include "webrtc/base/logging.h" | |
|
åsapersson
2015/11/25 16:14:48
remove unused
danilchap
2015/11/25 16:49:17
Done.
| |
| 15 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | |
| 16 #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" | |
| 17 | |
| 18 using webrtc::RTCPUtility::RtcpCommonHeader; | |
|
åsapersson
2015/11/25 16:14:48
remove unused
danilchap
2015/11/25 16:49:17
Done.
| |
| 19 | |
| 20 namespace webrtc { | |
| 21 namespace rtcp { | |
| 22 | |
| 23 // RFC 4585: Feedback format. | |
| 24 // | |
| 25 // Common packet format: | |
| 26 // | |
| 27 // 0 1 2 3 | |
| 28 // 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 | |
| 29 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | |
| 30 // |V=2|P| FMT | PT | length | | |
| 31 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | |
| 32 // 0 | SSRC of packet sender | | |
| 33 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | |
| 34 // 4 | SSRC of media source | | |
| 35 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | |
| 36 // : Feedback Control Information (FCI) : | |
| 37 // : : | |
| 38 | |
| 39 void Psfb::ParseBaseFeedback(const uint8_t* payload) { | |
| 40 sender_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&payload[0]); | |
| 41 media_ssrc_ = ByteReader<uint32_t>::ReadBigEndian(&payload[4]); | |
| 42 } | |
| 43 | |
| 44 void Psfb::CreateBaseFeedback(uint8_t* payload) const { | |
|
åsapersson
2015/11/25 16:14:48
buffer in h.file
danilchap
2015/11/25 16:49:17
Done. (changed the name in the .h to match Parse f
| |
| 45 ByteWriter<uint32_t>::WriteBigEndian(&payload[0], sender_ssrc_); | |
| 46 ByteWriter<uint32_t>::WriteBigEndian(&payload[4], media_ssrc_); | |
| 47 } | |
| 48 | |
| 49 } // namespace rtcp | |
| 50 } // namespace webrtc | |
| OLD | NEW |