diff --git a/modules/pacing/packet_router.cc b/modules/pacing/packet_router.cc index 1013ddf6988db8afb355552171e0f266c242542d..384fbd2a3b2876167b3d7671f552ed8f1b105c7e 100644 --- a/modules/pacing/packet_router.cc +++ b/modules/pacing/packet_router.cc @@ -67,7 +67,7 @@ void PacketRouter::AddSendRtpModule(RtpRtcpInterface* rtp_module, void PacketRouter::AddSendRtpModuleToMap(RtpRtcpInterface* rtp_module, uint32_t ssrc) { - RTC_DCHECK(send_modules_map_.find(ssrc) == send_modules_map_.end()); + RTC_CHECK(send_modules_map_.find(ssrc) == send_modules_map_.end()); // Signal to module that the pacer thread is attached and can send packets. rtp_module->OnPacketSendingThreadSwitched();