From 9138eb649b61926a68f1e75716680cf976d1528f Mon Sep 17 00:00:00 2001 From: "stefan@webrtc.org" Date: Tue, 1 Jul 2014 12:44:05 +0000 Subject: [PATCH] Fix compile error introduced with r6571. TBR=mflodman@webrtc.org BUG=3527 Review URL: https://webrtc-codereview.appspot.com/20799004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6572 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../remote_bitrate_estimator_single_stream.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc index e825b51fc..08422d28b 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc @@ -201,7 +201,7 @@ void RemoteBitrateEstimatorSingleStream::UpdateEstimate(int64_t now_ms) { observer_->OnReceiveBitrateChanged(ssrcs, target_bitrate); } for (it = overuse_detectors_.begin(); it != overuse_detectors_.end(); ++it) { - GetDetector(it).SetRateControlRegion(region); + GetDetector(it)->SetRateControlRegion(region); } }