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

Unified Diff: webrtc/video/video_loopback.cc

Issue 2029013002: Video loopback avg_burst_loss_length default parameter fix. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/video_loopback.cc
diff --git a/webrtc/video/video_loopback.cc b/webrtc/video/video_loopback.cc
index 70a940db5f0151ad63003c802725227390b95845..1622e6ad86c26d68bcc2177545eaf266eca84521 100644
--- a/webrtc/video/video_loopback.cc
+++ b/webrtc/video/video_loopback.cc
@@ -101,7 +101,9 @@ int LossPercent() {
return static_cast<int>(FLAGS_loss_percent);
}
-DEFINE_int32(avg_burst_loss_length, 1, "Average burst length of lost packets.");
+DEFINE_int32(avg_burst_loss_length,
+ -1,
+ "Average burst length of lost packets.");
int AvgBurstLossLength() {
return static_cast<int>(FLAGS_avg_burst_loss_length);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698