diff --git a/modules/pacing/packet_router.cc b/modules/pacing/packet_router.cc index 85490ef82d9777c58797731eb7b5ab3c03a49476..c5b89fa671b0d9c5898e301f1f2ed80360404216 100644 --- a/modules/pacing/packet_router.cc +++ b/modules/pacing/packet_router.cc @@ -68,7 +68,7 @@ void PacketRouter::AddSendRtpModule(RtpRtcpInterface* rtp_module, void PacketRouter::AddSendRtpModuleToMap(RtpRtcpInterface* rtp_module, uint32_t ssrc) { RTC_DCHECK_RUN_ON(&thread_checker_); - 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();