Remove test workaround to catch scenario when packet is resent before sent
Bug: webrtc:5540, webrtc:10198 Change-Id: I408b471cbd14c12bdb98606999807cc7f2b56c3f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/289100 Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Reviewed-by: Erik Språng <sprang@webrtc.org> Cr-Commit-Position: refs/heads/main@{#39134}
This commit is contained in:
parent
4ccb616fa2
commit
4885de46ef
@ -407,18 +407,6 @@ void RetransmissionEndToEndTest::DecodesRetransmittedFrame(bool enable_rtx,
|
|||||||
// This should be the only dropped packet.
|
// This should be the only dropped packet.
|
||||||
EXPECT_EQ(0u, retransmitted_timestamp_);
|
EXPECT_EQ(0u, retransmitted_timestamp_);
|
||||||
retransmitted_timestamp_ = rtp_packet.Timestamp();
|
retransmitted_timestamp_ = rtp_packet.Timestamp();
|
||||||
if (absl::c_linear_search(rendered_timestamps_,
|
|
||||||
retransmitted_timestamp_)) {
|
|
||||||
// Frame was rendered before last packet was scheduled for sending.
|
|
||||||
// This is extremly rare but possible scenario because prober able to
|
|
||||||
// resend packet before it was send.
|
|
||||||
// TODO(danilchap): Remove this corner case when prober would not be
|
|
||||||
// able to sneak in between packet saved to history for resending and
|
|
||||||
// pacer notified about existance of that packet for sending.
|
|
||||||
// See https://bugs.chromium.org/p/webrtc/issues/detail?id=5540 for
|
|
||||||
// details.
|
|
||||||
observation_complete_.Set();
|
|
||||||
}
|
|
||||||
return DROP_PACKET;
|
return DROP_PACKET;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -431,7 +419,6 @@ void RetransmissionEndToEndTest::DecodesRetransmittedFrame(bool enable_rtx,
|
|||||||
MutexLock lock(&mutex_);
|
MutexLock lock(&mutex_);
|
||||||
if (frame.timestamp() == retransmitted_timestamp_)
|
if (frame.timestamp() == retransmitted_timestamp_)
|
||||||
observation_complete_.Set();
|
observation_complete_.Set();
|
||||||
rendered_timestamps_.push_back(frame.timestamp());
|
|
||||||
}
|
}
|
||||||
orig_renderer_->OnFrame(frame);
|
orig_renderer_->OnFrame(frame);
|
||||||
}
|
}
|
||||||
@ -512,7 +499,6 @@ void RetransmissionEndToEndTest::DecodesRetransmittedFrame(bool enable_rtx,
|
|||||||
const std::string payload_name_;
|
const std::string payload_name_;
|
||||||
int marker_bits_observed_;
|
int marker_bits_observed_;
|
||||||
uint32_t retransmitted_timestamp_ RTC_GUARDED_BY(&mutex_);
|
uint32_t retransmitted_timestamp_ RTC_GUARDED_BY(&mutex_);
|
||||||
std::vector<uint32_t> rendered_timestamps_ RTC_GUARDED_BY(&mutex_);
|
|
||||||
} test(enable_rtx, enable_red);
|
} test(enable_rtx, enable_red);
|
||||||
|
|
||||||
RunBaseTest(&test);
|
RunBaseTest(&test);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user