Fixing LatestEstimate().

TBR=henrik.lundin@webrtc.org

BUG=

Review URL: https://webrtc-codereview.appspot.com/865005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2877 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
stefan@webrtc.org 2012-10-05 08:45:25 +00:00
parent 25fadd74d0
commit 81ebe38acb

View File

@ -151,7 +151,7 @@ bool RemoteBitrateEstimatorMultiStream::LatestEstimate(
if (streams_.size() > 0)
*bitrate_bps = remote_rate_.LatestEstimate() / streams_.size();
else
*bitrate_bps = 0;
*bitrate_bps = remote_rate_.LatestEstimate();
return true;
}