Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(248)

Unified Diff: media/cast/test/cast_benchmarks.cc

Issue 343523005: Cast: Avoid retransmit if we sent the same packet recently (less than RTT) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bugfix Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cast/rtcp/rtcp_unittest.cc ('k') | media/cast/transport/cast_transport_sender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/cast_benchmarks.cc
diff --git a/media/cast/test/cast_benchmarks.cc b/media/cast/test/cast_benchmarks.cc
index c3468a2cdba441997cdd44f1fd7cd58406fe766a..66257626bd60684445bc1f5582b54b2ba5183d16 100644
--- a/media/cast/test/cast_benchmarks.cc
+++ b/media/cast/test/cast_benchmarks.cc
@@ -212,9 +212,10 @@ class CastTransportSenderWrapper : public transport::CastTransportSender {
virtual void ResendPackets(
bool is_audio,
const MissingFramesAndPacketsMap& missing_packets,
- bool cancel_rtx_if_not_in_list) OVERRIDE {
+ bool cancel_rtx_if_not_in_list,
+ base::TimeDelta dedupe_window) OVERRIDE {
transport_->ResendPackets(
- is_audio, missing_packets, cancel_rtx_if_not_in_list);
+ is_audio, missing_packets, cancel_rtx_if_not_in_list, dedupe_window);
}
private:
« no previous file with comments | « media/cast/rtcp/rtcp_unittest.cc ('k') | media/cast/transport/cast_transport_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698