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

Unified Diff: webrtc/call/call.cc

Issue 1368943002: Fix suspend below min bitrate in new API by making it possible to set min bitrate at the receive-si… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Merge. 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
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/call.cc
diff --git a/webrtc/call/call.cc b/webrtc/call/call.cc
index 21109c21f5d005bec7244171fe178d709ba83c24..2c80ccff0dc038b7e23ddafc28f8b598bda3667e 100644
--- a/webrtc/call/call.cc
+++ b/webrtc/call/call.cc
@@ -85,9 +85,6 @@ class Call : public webrtc::Call, public PacketReceiver {
size_t length,
const PacketTime& packet_time);
- void SetBitrateControllerConfig(
- const webrtc::Call::Config::BitrateConfig& bitrate_config);
-
void ConfigureSync(const std::string& sync_group)
EXCLUSIVE_LOCKS_REQUIRED(receive_crit_);
@@ -159,7 +156,9 @@ Call::Call(const Call::Config& config)
Trace::CreateTrace();
module_process_thread_->Start();
- SetBitrateControllerConfig(config_.bitrate_config);
+ channel_group_->SetBweBitrates(config_.bitrate_config.min_bitrate_bps,
+ config_.bitrate_config.start_bitrate_bps,
+ config_.bitrate_config.max_bitrate_bps);
}
Call::~Call() {
@@ -387,17 +386,9 @@ void Call::SetBitrateConfig(
return;
}
config_.bitrate_config = bitrate_config;
- SetBitrateControllerConfig(bitrate_config);
-}
-
-void Call::SetBitrateControllerConfig(
- const webrtc::Call::Config::BitrateConfig& bitrate_config) {
- BitrateController* bitrate_controller =
- channel_group_->GetBitrateController();
- if (bitrate_config.start_bitrate_bps > 0)
- bitrate_controller->SetStartBitrate(bitrate_config.start_bitrate_bps);
- bitrate_controller->SetMinMaxBitrate(bitrate_config.min_bitrate_bps,
- bitrate_config.max_bitrate_bps);
+ channel_group_->SetBweBitrates(bitrate_config.min_bitrate_bps,
+ bitrate_config.start_bitrate_bps,
+ bitrate_config.max_bitrate_bps);
}
void Call::SignalNetworkState(NetworkState state) {
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698