RemoteBitrateEstimatorTest::TestRateIncreaseReordering sent in arrival timestamps in non monotonically increasing order. Fixed.

BUG=
R=holmer@google.com, stefan@webrtc.org

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4034 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
solenberg@webrtc.org 2013-05-15 13:49:57 +00:00
parent c93b1d038d
commit 5add4ad09c

View File

@ -86,8 +86,7 @@ TEST_F(RemoteBitrateEstimatorTest, TestRateIncreaseReordering) {
clock_.TimeInMilliseconds(), timestamp);
bitrate_estimator_->IncomingPacket(kDefaultSsrc,
1000,
clock_.TimeInMilliseconds() -
kFrameIntervalMs,
clock_.TimeInMilliseconds(),
timestamp - 90 * kFrameIntervalMs);
}
bitrate_estimator_->Process();