Reenable the dcheck ssrc can't change after first sent packet

Bug: webrtc:6887
Change-Id: I6eb1ffc7dd98390f870b15132ba6038dd6c57b87
Reviewed-on: https://webrtc-review.googlesource.com/36301
Reviewed-by: Erik Språng <sprang@webrtc.org>
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21453}
This commit is contained in:
Danil Chapovalov 2017-12-27 11:32:50 +01:00 committed by Commit Bot
parent d3070f43b1
commit 603ce9835b

View File

@ -927,10 +927,7 @@ bool RTPSender::SendToNetwork(std::unique_ptr<RtpPacketToSend> 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);
}