diff --git a/modules/rtp_rtcp/source/rtp_sender.cc b/modules/rtp_rtcp/source/rtp_sender.cc index bc880393ac..9ee5f3ba09 100644 --- a/modules/rtp_rtcp/source/rtp_sender.cc +++ b/modules/rtp_rtcp/source/rtp_sender.cc @@ -927,10 +927,7 @@ bool RTPSender::SendToNetwork(std::unique_ptr packet, // To support retransmissions, we store the media packet as sent in the // packet history (even if send failed). if (storage == kAllowRetransmission) { - // TODO(brandtr): Uncomment the DCHECK line below when |ssrc_| cannot - // change after the first packet has been sent. For more details, see - // https://bugs.chromium.org/p/webrtc/issues/detail?id=6887. - // RTC_DCHECK_EQ(ssrc, SSRC()); + RTC_DCHECK_EQ(ssrc, SSRC()); packet_history_.PutRtpPacket(std::move(packet), storage, true); }