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

Side by Side Diff: webrtc/video/full_stack_tests.cc

Issue 2799063003: Re-enable FullStackTest.ScreenshareSlidesVP9_2SL test. (Closed)
Patch Set: Created 3 years, 8 months 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 #include <stdio.h> 10 #include <stdio.h>
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 "VP8", 3, 2, 400000, 392 "VP8", 3, 2, 400000,
393 false, false, "", "ConferenceMotion_1280_720_50"}; 393 false, false, "", "ConferenceMotion_1280_720_50"};
394 394
395 const VideoQualityTest::Params::Video kSimulcastVp8VideoLow = { 395 const VideoQualityTest::Params::Video kSimulcastVp8VideoLow = {
396 true, 320, 180, 30, 396 true, 320, 180, 30,
397 30000, 150000, 200000, false, 397 30000, 150000, 200000, false,
398 "VP8", 3, 2, 400000, 398 "VP8", 3, 2, 400000,
399 false, false, "", "ConferenceMotion_1280_720_50"}; 399 false, false, "", "ConferenceMotion_1280_720_50"};
400 400
401 #if !defined(RTC_DISABLE_VP9) 401 #if !defined(RTC_DISABLE_VP9)
402 // Disabled due to crashes, see bugs.webrtc.org/7401. 402 TEST_F(FullStackTest, ScreenshareSlidesVP9_2SL) {
403 TEST_F(FullStackTest, DISABLED_ScreenshareSlidesVP9_2SL) {
404 VideoQualityTest::Params screenshare; 403 VideoQualityTest::Params screenshare;
405 screenshare.call.send_side_bwe = true; 404 screenshare.call.send_side_bwe = true;
406 screenshare.video = {true, 1850, 1110, 5, 50000, 200000, 2000000, false, 405 screenshare.video = {true, 1850, 1110, 5, 50000, 200000, 2000000, false,
407 "VP9", 1, 0, 400000, false, false, "", ""}; 406 "VP9", 1, 0, 400000, false, false, "", ""};
408 screenshare.screenshare = {true, 10}; 407 screenshare.screenshare = {true, 10};
409 screenshare.analyzer = {"screenshare_slides_vp9_2sl", 0.0, 0.0, 408 screenshare.analyzer = {"screenshare_slides_vp9_2sl", 0.0, 0.0,
410 kFullStackTestDurationSecs}; 409 kFullStackTestDurationSecs};
411 screenshare.logs = false; 410 screenshare.logs = false;
412 screenshare.ss = {std::vector<VideoStream>(), 0, 2, 1}; 411 screenshare.ss = {std::vector<VideoStream>(), 0, 2, 1};
413 RunTest(screenshare); 412 RunTest(screenshare);
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 std::vector<VideoStream> streams = {DefaultVideoStream(video_params_low), 585 std::vector<VideoStream> streams = {DefaultVideoStream(video_params_low),
587 DefaultVideoStream(video_params_medium), 586 DefaultVideoStream(video_params_medium),
588 DefaultVideoStream(video_params_high)}; 587 DefaultVideoStream(video_params_high)};
589 large_room.num_thumbnails = 50; 588 large_room.num_thumbnails = 50;
590 large_room.ss = {streams, 2, 1, 0}; 589 large_room.ss = {streams, 2, 1, 0};
591 RunTest(large_room); 590 RunTest(large_room);
592 } 591 }
593 592
594 593
595 } // namespace webrtc 594 } // namespace webrtc
OLDNEW
« 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