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

Unified Diff: webrtc/call.h

Issue 2106183002: Fix bug where min transmit bitrate wasn't working (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed comments Created 4 years, 5 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 | webrtc/call/call.cc » ('j') | webrtc/call/call.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call.h
diff --git a/webrtc/call.h b/webrtc/call.h
index f89af93b5152e5d81e24b0b75f37b9510dae07fd..1746d23969cc3d38f3de84dcf0de13cb4eced2c4 100644
--- a/webrtc/call.h
+++ b/webrtc/call.h
@@ -91,8 +91,9 @@ class Call {
};
struct Stats {
- int send_bandwidth_bps = 0;
- int recv_bandwidth_bps = 0;
+ int send_bandwidth_bps = 0; // Estimated available send bandwidth.
+ int min_transmit_bitrate_bps = 0; // Bitrate to send, padding as needed.
perkj_webrtc 2016/07/04 11:24:24 Discussed off line- remove min_transmit_bitrate_b
sprang_webrtc 2016/07/04 12:26:09 As discussed off line, reinstate this, but reporti
+ int recv_bandwidth_bps = 0; // Estimated available receive bandwidth.
int64_t pacer_delay_ms = 0;
int64_t rtt_ms = -1;
};
« no previous file with comments | « no previous file | webrtc/call/call.cc » ('j') | webrtc/call/call.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698