| Index: webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h
|
| index 6b4a181330caac56f666c693177aae183c619aa6..af3fbacc809551576395d8e453a6f53f00a74dec 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h
|
| @@ -16,21 +16,20 @@
|
| #include <vector>
|
|
|
| #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h"
|
| -#include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h"
|
|
|
| namespace webrtc {
|
| namespace rtcp {
|
| +class CommonHeader;
|
|
|
| class Bye : public RtcpPacket {
|
| public:
|
| static const uint8_t kPacketType = 203;
|
|
|
| Bye();
|
| - virtual ~Bye() {}
|
| + ~Bye() 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& packet);
|
|
|
| void From(uint32_t ssrc) { sender_ssrc_ = ssrc; }
|
| bool WithCsrc(uint32_t csrc);
|
|
|