Reduce smoke test video resolution.

Reduce resolution of smoke test in PC E2E test framework to reduce load
on bots, cause this test isn't part of performance test binary.

Bug: webrtc:10138
Change-Id: I2c3758583c03e75be17bfef799a31f63357834c6
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/128380
Reviewed-by: Artem Titarenko <artit@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27157}
This commit is contained in:
Artem Titov 2019-03-18 11:15:57 +01:00 committed by Commit Bot
parent 02ba0ac2e4
commit 2236bb993a

View File

@ -47,14 +47,14 @@ TEST(PeerConnectionE2EQualityTestSmokeTest, RunWithEmulatedNetwork) {
PeerConnectionE2EQualityTestFixture::InjectableComponents;
auto alice_params = absl::make_unique<Params>();
VideoConfig alice_video_config(1280, 720, 30);
VideoConfig alice_video_config(640, 360, 30);
alice_video_config.stream_label = "alice-video";
alice_params->video_configs.push_back(alice_video_config);
alice_params->audio_config = AudioConfig();
auto bob_params = absl::make_unique<Params>();
VideoConfig bob_video_config(1280, 720, 30);
VideoConfig bob_video_config(640, 360, 30);
bob_video_config.stream_label = "bob-video";
bob_params->video_configs.push_back(bob_video_config);