| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (c) 2016 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 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RPSI_H_ | |
| 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RPSI_H_ | |
| 13 | |
| 14 #include "webrtc/base/basictypes.h" | |
| 15 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" | |
| 16 | |
| 17 namespace webrtc { | |
| 18 namespace rtcp { | |
| 19 class CommonHeader; | |
| 20 | |
| 21 // Reference picture selection indication (RPSI) (RFC 4585). | |
| 22 // Assumes native bit string stores PictureId (VP8, VP9). | |
| 23 class Rpsi : public Psfb { | |
| 24 public: | |
| 25 static constexpr uint8_t kFeedbackMessageType = 3; | |
| 26 Rpsi(); | |
| 27 ~Rpsi() override {} | |
| 28 | |
| 29 // Parse assumes header is already parsed and validated. | |
| 30 bool Parse(const CommonHeader& packet); | |
| 31 | |
| 32 void SetPayloadType(uint8_t payload); | |
| 33 void SetPictureId(uint64_t picture_id); | |
| 34 | |
| 35 uint8_t payload_type() const { return payload_type_; } | |
| 36 uint64_t picture_id() const { return picture_id_; } | |
| 37 | |
| 38 protected: | |
| 39 bool Create(uint8_t* packet, | |
| 40 size_t* index, | |
| 41 size_t max_length, | |
| 42 RtcpPacket::PacketReadyCallback* callback) const override; | |
| 43 | |
| 44 private: | |
| 45 size_t BlockLength() const override { return block_length_; } | |
| 46 static size_t CalculateBlockLength(uint8_t bitstring_size_bytes); | |
| 47 | |
| 48 uint8_t payload_type_; | |
| 49 uint64_t picture_id_; | |
| 50 size_t block_length_; | |
| 51 }; | |
| 52 } // namespace rtcp | |
| 53 } // namespace webrtc | |
| 54 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RPSI_H_ | |
| OLD | NEW |