| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RPSI_H_ | 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RPSI_H_ |
| 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RPSI_H_ | 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RPSI_H_ |
| 13 | 13 |
| 14 #include "webrtc/base/basictypes.h" | 14 #include "webrtc/base/basictypes.h" |
| 15 #include "webrtc/base/constructormagic.h" | |
| 16 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" | 15 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" |
| 17 | 16 |
| 18 namespace webrtc { | 17 namespace webrtc { |
| 19 namespace rtcp { | 18 namespace rtcp { |
| 20 class CommonHeader; | 19 class CommonHeader; |
| 21 | 20 |
| 22 // Reference picture selection indication (RPSI) (RFC 4585). | 21 // Reference picture selection indication (RPSI) (RFC 4585). |
| 23 // Assumes native bit string stores PictureId (VP8, VP9). | 22 // Assumes native bit string stores PictureId (VP8, VP9). |
| 24 class Rpsi : public Psfb { | 23 class Rpsi : public Psfb { |
| 25 public: | 24 public: |
| (...skipping 16 matching lines...) Expand all Loading... |
| 42 size_t max_length, | 41 size_t max_length, |
| 43 RtcpPacket::PacketReadyCallback* callback) const override; | 42 RtcpPacket::PacketReadyCallback* callback) const override; |
| 44 | 43 |
| 45 private: | 44 private: |
| 46 size_t BlockLength() const override { return block_length_; } | 45 size_t BlockLength() const override { return block_length_; } |
| 47 static size_t CalculateBlockLength(uint8_t bitstring_size_bytes); | 46 static size_t CalculateBlockLength(uint8_t bitstring_size_bytes); |
| 48 | 47 |
| 49 uint8_t payload_type_; | 48 uint8_t payload_type_; |
| 50 uint64_t picture_id_; | 49 uint64_t picture_id_; |
| 51 size_t block_length_; | 50 size_t block_length_; |
| 52 | |
| 53 RTC_DISALLOW_COPY_AND_ASSIGN(Rpsi); | |
| 54 }; | 51 }; |
| 55 } // namespace rtcp | 52 } // namespace rtcp |
| 56 } // namespace webrtc | 53 } // namespace webrtc |
| 57 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RPSI_H_ | 54 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RPSI_H_ |
| OLD | NEW |