| Index: webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h
|
| index 8568e7327c73ebc89ab893ca04a19664db16196c..7e2be322baa393c0cbcbb3604ed318981b5f907c 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h
|
| @@ -14,21 +14,21 @@
|
| #include "webrtc/base/basictypes.h"
|
| #include "webrtc/base/constructormagic.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 CommonHeader;
|
| +
|
| // draft-perkins-avt-rapid-rtp-sync-03
|
| class RapidResyncRequest : public Rtpfb {
|
| public:
|
| - static const uint8_t kFeedbackMessageType = 5;
|
| + static constexpr uint8_t kFeedbackMessageType = 5;
|
|
|
| RapidResyncRequest() {}
|
| ~RapidResyncRequest() override {}
|
|
|
| // 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.
|
| + bool Parse(const CommonHeader& header);
|
|
|
| protected:
|
| bool Create(uint8_t* packet,
|
|
|