Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1571)

Unified Diff: webrtc/video/full_stack_tests.cc

Issue 2585703002: Add full stack tests (ForemanCif30kbpsWithoutPacketLoss, ForemanCif30kbpsWithoutPacketLossH264) (Closed)
Patch Set: address comments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..f1d115005c2d9896cf910a3a8d4a51096bfec28b 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;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698