| 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 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ | 10 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ |
| 11 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ | 11 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ |
| 12 | 12 |
| 13 #include "webrtc/base/basictypes.h" | 13 #include "webrtc/base/basictypes.h" |
| 14 #include "webrtc/base/constructormagic.h" | |
| 15 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" | 14 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" |
| 16 | 15 |
| 17 namespace webrtc { | 16 namespace webrtc { |
| 18 namespace rtcp { | 17 namespace rtcp { |
| 19 class CommonHeader; | 18 class CommonHeader; |
| 20 // Picture loss indication (PLI) (RFC 4585). | 19 // Picture loss indication (PLI) (RFC 4585). |
| 21 class Pli : public Psfb { | 20 class Pli : public Psfb { |
| 22 public: | 21 public: |
| 23 static constexpr uint8_t kFeedbackMessageType = 1; | 22 static constexpr uint8_t kFeedbackMessageType = 1; |
| 24 | 23 |
| 25 Pli() {} | 24 Pli() {} |
| 26 ~Pli() override {} | 25 ~Pli() override {} |
| 27 | 26 |
| 28 bool Parse(const CommonHeader& packet); | 27 bool Parse(const CommonHeader& packet); |
| 29 | 28 |
| 30 protected: | 29 protected: |
| 31 bool Create(uint8_t* packet, | 30 bool Create(uint8_t* packet, |
| 32 size_t* index, | 31 size_t* index, |
| 33 size_t max_length, | 32 size_t max_length, |
| 34 RtcpPacket::PacketReadyCallback* callback) const override; | 33 RtcpPacket::PacketReadyCallback* callback) const override; |
| 35 | 34 |
| 36 private: | 35 private: |
| 37 size_t BlockLength() const override { | 36 size_t BlockLength() const override { |
| 38 return kHeaderLength + kCommonFeedbackLength; | 37 return kHeaderLength + kCommonFeedbackLength; |
| 39 } | 38 } |
| 40 | |
| 41 RTC_DISALLOW_COPY_AND_ASSIGN(Pli); | |
| 42 }; | 39 }; |
| 43 | 40 |
| 44 } // namespace rtcp | 41 } // namespace rtcp |
| 45 } // namespace webrtc | 42 } // namespace webrtc |
| 46 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ | 43 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ |
| OLD | NEW |