in RtcpTransceiver remove workaround for old bug in RtcpReceiver
the bug in RtcpReceiver was fixed Jan 30, i.e. 10.5 month ago Bug: webrtc:8805 Change-Id: I5f5f00fba5e984ede906c5dbbe841ee5f4992e09 Reviewed-on: https://webrtc-review.googlesource.com/c/99822 Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25683}
This commit is contained in:
committed by
Commit Bot
parent
c3bd2fbccf
commit
601504c5cc
@ -421,12 +421,6 @@ std::vector<rtcp::ReportBlock> RtcpTransceiverImpl::CreateReportBlocks(
|
||||
auto it = remote_senders_.find(report_block.source_ssrc());
|
||||
if (it == remote_senders_.end() ||
|
||||
!it->second.last_received_sender_report) {
|
||||
if (config_.avoid_zero_last_sr_in_last_report_block && last_sr != 0) {
|
||||
// Simulate behaviour of the RtcpSender to avoid hitting bug in
|
||||
// RtcpReceiver.
|
||||
report_block.SetLastSr(last_sr);
|
||||
report_block.SetDelayLastSr(last_delay);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
const SenderReportTimes& last_sender_report =
|
||||
|
||||
Reference in New Issue
Block a user