Fix GCC 4.6 build error.

TBR=kjellander

BUG=

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2742 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
stefan@webrtc.org 2012-09-11 14:25:05 +00:00
parent c58be0d217
commit 2578300eee

View File

@ -71,11 +71,6 @@ WebRtc_UWord32 BitRateStats::BitRate(WebRtc_Word64 nowMs)
// Calculate the average bit rate the past BITRATE_AVERAGE_WINDOW ms.
// Removes any old samples from the list.
EraseOld(nowMs);
WebRtc_Word64 timeOldest = nowMs;
if (_dataSamples.size() > 0)
{
timeOldest = _dataSamples.front()->_timeCompleteMs;
}
return static_cast<WebRtc_UWord32>(_accumulatedBytes * 8.0f * 1000.0f /
kBitrateAverageWindow + 0.5f);
}