Change receive statistics bitrate to be provided in bps instead of kbps.

BUG=1469

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3854 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
stefan@webrtc.org
2013-04-16 09:02:03 +00:00
parent e44a064915
commit bdb9b971be

View File

@@ -334,7 +334,6 @@ void VCMReceiver::ReceiveStatistics(uint32_t* bitrate,
assert(bitrate);
assert(framerate);
jitter_buffer_.IncomingRateStatistics(framerate, bitrate);
*bitrate /= 1000; // Should be in kbps.
}
void VCMReceiver::ReceivedFrameCount(VCMFrameCount* frame_count) const {