diff --git a/src/modules/remote_bitrate_estimator/remote_bitrate_estimator_multi_stream.cc b/src/modules/remote_bitrate_estimator/remote_bitrate_estimator_multi_stream.cc index 819266b084..e98c704b3a 100644 --- a/src/modules/remote_bitrate_estimator/remote_bitrate_estimator_multi_stream.cc +++ b/src/modules/remote_bitrate_estimator/remote_bitrate_estimator_multi_stream.cc @@ -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; }