| Index: webrtc/modules/congestion_controller/delay_based_bwe.cc
|
| diff --git a/webrtc/modules/congestion_controller/delay_based_bwe.cc b/webrtc/modules/congestion_controller/delay_based_bwe.cc
|
| index 7a20b3eedb4fea1556931d8935c5218591a71a8d..0febf6f4355edbf0a69e95aa34fe91dc19e8a979 100644
|
| --- a/webrtc/modules/congestion_controller/delay_based_bwe.cc
|
| +++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc
|
| @@ -383,6 +383,11 @@ bool DelayBasedBwe::LatestEstimate(std::vector<uint32_t>* ssrcs,
|
| return true;
|
| }
|
|
|
| +void DelayBasedBwe::SetStartBitrate(int start_bitrate_bps) {
|
| + LOG(LS_WARNING) << "BWE Setting start bitrate to: " << start_bitrate_bps;
|
| + rate_control_.SetStartBitrate(start_bitrate_bps);
|
| +}
|
| +
|
| void DelayBasedBwe::SetMinBitrate(int min_bitrate_bps) {
|
| // Called from both the configuration thread and the network thread. Shouldn't
|
| // be called from the network thread in the future.
|
|
|