| Index: webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h
|
| index eb2a06e6be637eb76499a158e193b56929ea8143..5940edbb116040b9143ab8ea2358e52fe3fb6bc1 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h
|
| @@ -16,10 +16,10 @@
|
|
|
| #include "webrtc/base/basictypes.h"
|
| #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h"
|
| -#include "webrtc/modules/rtp_rtcp/source/rtcp_utility.h"
|
|
|
| namespace webrtc {
|
| namespace rtcp {
|
| +class CommonHeader;
|
| // Source Description (SDES) (RFC 3550).
|
| class Sdes : public RtcpPacket {
|
| public:
|
| @@ -33,8 +33,7 @@ class Sdes : public RtcpPacket {
|
| ~Sdes() 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);
|
|
|
| bool WithCName(uint32_t ssrc, const std::string& cname);
|
|
|
|
|