Chromium Code Reviews| Index: webrtc/video/full_stack_tests.cc |
| diff --git a/webrtc/video/full_stack_tests.cc b/webrtc/video/full_stack_tests.cc |
| index 7aabb6e4bf2444516f94d52c784641802a5a6bcf..5fc43fe3459f2eb804745e7a407457032238cac9 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"}; |
|
mflodman
2016/12/16 11:04:14
Can you remove the extra empty spaces.
åsapersson
2016/12/16 11:21:58
Done (from git cl format)
|
| + 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,17 @@ 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, |
|
mflodman
2016/12/16 11:04:14
And here too.
åsapersson
2016/12/16 11:21:58
Done.
|
| + 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; |