| Index: webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
|
| index 5d15195cdee93ac057aa83489e8e6b4aea0d50a4..451360a57d7528fab99278c8e2ca074ecf6928e0 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
|
| @@ -475,7 +475,7 @@ int32_t ModuleRtpRtcpImpl::SetTransportOverhead(
|
| }
|
|
|
| int32_t ModuleRtpRtcpImpl::SetMaxTransferUnit(const uint16_t mtu) {
|
| - DCHECK_LE(mtu, IP_PACKET_SIZE) << "Invalid mtu: " << mtu;
|
| + RTC_DCHECK_LE(mtu, IP_PACKET_SIZE) << "Invalid mtu: " << mtu;
|
| return rtp_sender_.SetMaxPayloadLength(mtu - packet_overhead_,
|
| packet_overhead_);
|
| }
|
|
|