| 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 31366ad3590b515b7e21e77cd9b075e049670c54..46382ac1a5aee2ba4b7281adde2a6a73e2b14b2e 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h
|
| @@ -28,6 +28,7 @@ class Sdes : public RtcpPacket {
|
| std::string cname;
|
| };
|
| static constexpr uint8_t kPacketType = 202;
|
| + static constexpr size_t kMaxNumberOfChunks = 0x1f;
|
|
|
| Sdes();
|
| ~Sdes() override;
|
| @@ -48,8 +49,6 @@ class Sdes : public RtcpPacket {
|
| RtcpPacket::PacketReadyCallback* callback) const override;
|
|
|
| private:
|
| - static const size_t kMaxNumberOfChunks = 0x1f;
|
| -
|
| std::vector<Chunk> chunks_;
|
| size_t block_length_;
|
| };
|
|
|