| 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 |
| 11 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h" | 11 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h" |
| 12 | 12 |
| 13 #include "webrtc/base/checks.h" | 13 #include "webrtc/base/checks.h" |
| 14 #include "webrtc/base/logging.h" | 14 #include "webrtc/base/logging.h" |
| 15 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" | 15 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" |
| 16 | 16 |
| 17 namespace webrtc { | 17 namespace webrtc { |
| 18 namespace rtcp { | 18 namespace rtcp { |
| 19 | 19 constexpr uint8_t Pli::kFeedbackMessageType; |
| 20 // RFC 4585: Feedback format. | 20 // RFC 4585: Feedback format. |
| 21 // | 21 // |
| 22 // Common packet format: | 22 // Common packet format: |
| 23 // | 23 // |
| 24 // 0 1 2 3 | 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 | 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 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | 26 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 27 // |V=2|P| FMT | PT | length | | 27 // |V=2|P| FMT | PT | length | |
| 28 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | 28 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 29 // | SSRC of packet sender | | 29 // | SSRC of packet sender | |
| 30 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | 30 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 31 // | SSRC of media source | | 31 // | SSRC of media source | |
| 32 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | 32 // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| 33 // : Feedback Control Information (FCI) : | 33 // : Feedback Control Information (FCI) : |
| 34 // : : | 34 // : : |
| 35 | 35 |
| 36 // | 36 // |
| 37 // Picture loss indication (PLI) (RFC 4585). | 37 // Picture loss indication (PLI) (RFC 4585). |
| 38 // FCI: no feedback control information. | 38 // FCI: no feedback control information. |
| 39 bool Pli::Parse(const CommonHeader& packet) { | 39 bool Pli::Parse(const CommonHeader& packet) { |
| 40 RTC_DCHECK(packet.type() == kPacketType); | 40 RTC_DCHECK_EQ(packet.type(), kPacketType); |
| 41 RTC_DCHECK(packet.fmt() == kFeedbackMessageType); | 41 RTC_DCHECK_EQ(packet.fmt(), kFeedbackMessageType); |
| 42 | 42 |
| 43 if (packet.payload_size_bytes() < kCommonFeedbackLength) { | 43 if (packet.payload_size_bytes() < kCommonFeedbackLength) { |
| 44 LOG(LS_WARNING) << "Packet is too small to be a valid PLI packet"; | 44 LOG(LS_WARNING) << "Packet is too small to be a valid PLI packet"; |
| 45 return false; | 45 return false; |
| 46 } | 46 } |
| 47 | 47 |
| 48 ParseCommonFeedback(packet.payload()); | 48 ParseCommonFeedback(packet.payload()); |
| 49 return true; | 49 return true; |
| 50 } | 50 } |
| 51 | 51 |
| 52 bool Pli::Create(uint8_t* packet, | 52 bool Pli::Create(uint8_t* packet, |
| 53 size_t* index, | 53 size_t* index, |
| 54 size_t max_length, | 54 size_t max_length, |
| 55 RtcpPacket::PacketReadyCallback* callback) const { | 55 RtcpPacket::PacketReadyCallback* callback) const { |
| 56 while (*index + BlockLength() > max_length) { | 56 while (*index + BlockLength() > max_length) { |
| 57 if (!OnBufferFull(packet, index, callback)) | 57 if (!OnBufferFull(packet, index, callback)) |
| 58 return false; | 58 return false; |
| 59 } | 59 } |
| 60 | 60 |
| 61 CreateHeader(kFeedbackMessageType, kPacketType, HeaderLength(), packet, | 61 CreateHeader(kFeedbackMessageType, kPacketType, HeaderLength(), packet, |
| 62 index); | 62 index); |
| 63 CreateCommonFeedback(packet + *index); | 63 CreateCommonFeedback(packet + *index); |
| 64 *index += kCommonFeedbackLength; | 64 *index += kCommonFeedbackLength; |
| 65 return true; | 65 return true; |
| 66 } | 66 } |
| 67 | 67 |
| 68 } // namespace rtcp | 68 } // namespace rtcp |
| 69 } // namespace webrtc | 69 } // namespace webrtc |
| OLD | NEW |