Index: webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h |
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h |
similarity index 53% |
copy from webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h |
copy to webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h |
index 6b4a181330caac56f666c693177aae183c619aa6..fb2be113a2bcdf69cf56795a10ef59bfc5d7fe33 100644 |
--- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h |
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h |
@@ -6,39 +6,33 @@ |
* tree. An additional intellectual property rights grant can be found |
* in the file PATENTS. All contributing project authors may |
* be found in the AUTHORS file in the root of the source tree. |
- * |
*/ |
-#ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_BYE_H_ |
-#define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_BYE_H_ |
+#ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_NACK_H_ |
+#define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_NACK_H_ |
-#include <string> |
#include <vector> |
-#include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" |
+#include "webrtc/base/basictypes.h" |
+#include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h" |
#include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h" |
namespace webrtc { |
namespace rtcp { |
-class Bye : public RtcpPacket { |
+class Nack : public Rtpfb { |
public: |
- static const uint8_t kPacketType = 203; |
+ const uint8_t kFeedbackMessageType = 1; |
+ Nack() {} |
- Bye(); |
- virtual ~Bye() {} |
+ virtual ~Nack() {} |
// Parse assumes header is already parsed and validated. |
bool Parse(const RTCPUtility::RtcpCommonHeader& header, |
const uint8_t* payload); // Size of the payload is in the header. |
- void From(uint32_t ssrc) { sender_ssrc_ = ssrc; } |
- bool WithCsrc(uint32_t csrc); |
- void WithReason(const std::string& reason); |
- |
- uint32_t sender_ssrc() const { return sender_ssrc_; } |
- const std::vector<uint32_t>& csrcs() const { return csrcs_; } |
- const std::string& reason() const { return reason_; } |
+ void WithList(const uint16_t* nack_list, size_t length); |
+ const std::vector<uint16_t>& packet_ids() const { return packet_ids_; } |
protected: |
bool Create(uint8_t* packet, |
@@ -46,18 +40,24 @@ class Bye : public RtcpPacket { |
size_t max_length, |
RtcpPacket::PacketReadyCallback* callback) const override; |
+ size_t BlockLength() const override; |
+ |
private: |
- static const int kMaxNumberOfCsrcs = 0x1f - 1; // First item is sender SSRC. |
+ const size_t kNackItemLength = 4; |
+ struct PackedNack { |
+ uint16_t first_pid; |
+ uint16_t bitmask; |
+ }; |
- size_t BlockLength() const override; |
+ void Pack(); // Fills packed_ using packed_ids_. (used in WithList). |
+ void Unpack(); // Fills packet_ids_ using packed_. (used in Parse). |
- uint32_t sender_ssrc_; |
- std::vector<uint32_t> csrcs_; |
- std::string reason_; |
+ std::vector<PackedNack> packed_; |
+ std::vector<uint16_t> packet_ids_; |
- RTC_DISALLOW_COPY_AND_ASSIGN(Bye); |
+ RTC_DISALLOW_COPY_AND_ASSIGN(Nack); |
}; |
} // namespace rtcp |
} // namespace webrtc |
-#endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_BYE_H_ |
+#endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_NACK_H_ |