From fb6ad3b1961bde202b3102f8006acd2ce373acd4 Mon Sep 17 00:00:00 2001 From: asapersson Date: Fri, 16 Dec 2016 06:54:01 -0800 Subject: [PATCH] Add full stack tests: - ForemanCif30kbpsWithoutPacketLoss - ForemanCif30kbpsWithoutPacketLossH264 BUG=webrtc:6634 Review-Url: https://codereview.webrtc.org/2585703002 Cr-Commit-Position: refs/heads/master@{#15658} --- webrtc/video/full_stack_tests.cc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/webrtc/video/full_stack_tests.cc b/webrtc/video/full_stack_tests.cc index 7aabb6e4bf..f1d115005c 100644 --- a/webrtc/video/full_stack_tests.cc +++ b/webrtc/video/full_stack_tests.cc @@ -79,6 +79,16 @@ TEST_F(FullStackTest, ForemanCifWithoutPacketLoss) { RunTest(foreman_cif); } +TEST_F(FullStackTest, ForemanCif30kbpsWithoutPacketLoss) { + VideoQualityTest::Params foreman_cif; + foreman_cif.call.send_side_bwe = true; + foreman_cif.video = {true, 352, 288, 10, 30000, 30000, 30000, false, + "VP8", 1, 0, 0, false, false, "", "foreman_cif"}; + foreman_cif.analyzer = {"foreman_cif_30kbps_net_delay_0_0_plr_0", 0.0, 0.0, + kFullStackTestDurationSecs}; + RunTest(foreman_cif); +} + TEST_F(FullStackTest, ForemanCifPlr5) { VideoQualityTest::Params foreman_cif; foreman_cif.call.send_side_bwe = true; @@ -127,6 +137,16 @@ TEST_F(FullStackTest, ForemanCifWithoutPacketlossH264) { RunTest(foreman_cif); } +TEST_F(FullStackTest, ForemanCif30kbpsWithoutPacketlossH264) { + VideoQualityTest::Params foreman_cif; + foreman_cif.call.send_side_bwe = true; + foreman_cif.video = {true, 352, 288, 10, 30000, 30000, 30000, false, "H264", + 1, 0, 0, false, false, "", "foreman_cif"}; + foreman_cif.analyzer = {"foreman_cif_30kbps_net_delay_0_0_plr_0_H264", 0.0, + 0.0, kFullStackTestDurationSecs}; + RunTest(foreman_cif); +} + TEST_F(FullStackTest, ForemanCifPlr5H264) { VideoQualityTest::Params foreman_cif; foreman_cif.call.send_side_bwe = true;