summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstefan@webrtc.org <stefan@webrtc.org>2014-11-04 09:08:21 +0000
committerstefan@webrtc.org <stefan@webrtc.org>2014-11-04 09:08:21 +0000
commit343d3cfe0a547993dbfc8b8d9880b477228f25b2 (patch)
treef740a359f9013610e44ad2e6bf97017b14d3687a
parentdba94e18151cc387c12be460b29651022897e459 (diff)
downloadwebrtc-343d3cfe0a547993dbfc8b8d9880b477228f25b2.tar.gz
Enables AIMD control by default.
BUG=1788 R=pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/27019004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@7604 4adac7df-926f-26a2-2b94-8c16560cd09d
-rw-r--r--video_engine/vie_channel_group.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/video_engine/vie_channel_group.cc b/video_engine/vie_channel_group.cc
index c6b3f741..9c2d59f0 100644
--- a/video_engine/vie_channel_group.cc
+++ b/video_engine/vie_channel_group.cc
@@ -41,7 +41,7 @@ class WrappingBitrateEstimator : public RemoteBitrateEstimator {
crit_sect_(CriticalSectionWrapper::CreateCriticalSection()),
engine_id_(engine_id),
min_bitrate_bps_(config.Get<RemoteBitrateEstimatorMinRate>().min_rate),
- rate_control_type_(kMimdControl),
+ rate_control_type_(kAimdControl),
rbe_(RemoteBitrateEstimatorFactory().Create(observer_,
clock_,
rate_control_type_,