Rename I420A Multiplex perf test

This test doesn't use foreman_cif as input, so correct the naming to reflect that
input comes from "Generator".

Bug: webrtc:7671
Change-Id: I4bc8fc5eb5c9c3aa1ecc95f47510ee5eaec398eb
Reviewed-on: https://webrtc-review.googlesource.com/61288
Reviewed-by: Niklas Enbom <niklas.enbom@webrtc.org>
Commit-Queue: Emircan Uysaler <emircan@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22391}
This commit is contained in:
Emircan Uysaler 2018-03-12 11:53:21 -07:00 committed by Commit Bot
parent 5b9c6840b1
commit f1ff3bdad2

View File

@ -85,15 +85,15 @@ TEST_F(FullStackTest, ForemanCifWithoutPacketLossMultiplexI420Frame) {
RunTest(foreman_cif); RunTest(foreman_cif);
} }
TEST_F(FullStackTest, ForemanCifWithoutPacketLossMultiplexI420AFrame) { TEST_F(FullStackTest, GeneratorWithoutPacketLossMultiplexI420AFrame) {
VideoQualityTest::Params foreman_cif; VideoQualityTest::Params generator;
foreman_cif.call.send_side_bwe = true; generator.call.send_side_bwe = true;
foreman_cif.video[0] = {true, 352, 288, 30, 700000, generator.video[0] = {true, 352, 288, 30, 700000,
700000, 700000, false, "multiplex", 1, 700000, 700000, false, "multiplex", 1,
0, 0, false, false, "GeneratorI420A"}; 0, 0, false, false, "GeneratorI420A"};
foreman_cif.analyzer = {"foreman_cif_net_delay_0_0_plr_0_Multiplex", 0.0, 0.0, generator.analyzer = {"generator_net_delay_0_0_plr_0_Multiplex", 0.0, 0.0,
kFullStackTestDurationSecs}; kFullStackTestDurationSecs};
RunTest(foreman_cif); RunTest(generator);
} }
#endif // !defined(RTC_DISABLE_VP9) #endif // !defined(RTC_DISABLE_VP9)