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

Unified Diff: webrtc/video/video_loopback.cc

Issue 1338203003: Wire up send-side bandwidth estimation. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 3 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
Index: webrtc/video/video_loopback.cc
diff --git a/webrtc/video/video_loopback.cc b/webrtc/video/video_loopback.cc
index 789b5cceacf0f4601a7c391bc7590c069b3cce16..ba08197e54fb1108cf56b0a15b42cbe993f6eafa 100644
--- a/webrtc/video/video_loopback.cc
+++ b/webrtc/video/video_loopback.cc
@@ -112,6 +112,7 @@ size_t NumTemporalLayers() {
return static_cast<size_t>(FLAGS_num_temporal_layers);
}
+DEFINE_bool(send_side_bwe, false, "Use send-side bandwidth estimation");
} // namespace flags
void Loopback() {
@@ -129,7 +130,8 @@ void Loopback() {
flags::QueueSize(),
flags::AvgPropagationDelayMs(),
flags::StdPropagationDelayMs(),
- flags::FLAGS_logs};
+ flags::FLAGS_logs,
+ flags::FLAGS_send_side_bwe};
test::Loopback loopback(config);
loopback.Run();
}

Powered by Google App Engine
This is Rietveld 408576698