Add AbsSendTime unittests to rampup_tests.cc.

R=stefan@webrtc.org
BUG=

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7862 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2014-12-10 10:36:20 +00:00
parent 0df371549f
commit 85bd53e7c9

View File

@ -507,4 +507,20 @@ TEST_F(RampUpTest, UpDownUpOneStreamRtx) { RunRampUpDownUpTest(1, true); }
TEST_F(RampUpTest, UpDownUpThreeStreamsRtx) { RunRampUpDownUpTest(3, true); }
TEST_F(RampUpTest, AbsSendTimeSingleStream) {
RunRampUpTest(false, 1, 0, RtpExtension::kAbsSendTime);
}
TEST_F(RampUpTest, AbsSendTimeSimulcast) {
RunRampUpTest(false, 3, 0, RtpExtension::kAbsSendTime);
}
TEST_F(RampUpTest, AbsSendTimeSimulcastWithRtx) {
RunRampUpTest(true, 3, 0, RtpExtension::kAbsSendTime);
}
TEST_F(RampUpTest, AbsSendTimeSingleStreamWithHighStartBitrate) {
RunRampUpTest(false, 1, 0.9 * kSingleStreamTargetBps,
RtpExtension::kAbsSendTime);
}
} // namespace webrtc