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

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

Issue 2685583006: Reland of Added VP8 simulcast tests. Fixed analyzer to correctly infer timestamps. (Closed)
Patch Set: Created 3 years, 10 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 | « webrtc/common_video/include/frame_callback.h ('k') | webrtc/video/video_quality_test.cc » ('j') | 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 "VP9", 1, 0, 400000, false, false, "", ""}; 355 "VP9", 1, 0, 400000, false, false, "", ""};
356 screenshare.screenshare = {true, 10}; 356 screenshare.screenshare = {true, 10};
357 screenshare.analyzer = {"screenshare_slides_vp9_2sl", 0.0, 0.0, 357 screenshare.analyzer = {"screenshare_slides_vp9_2sl", 0.0, 0.0,
358 kFullStackTestDurationSecs}; 358 kFullStackTestDurationSecs};
359 screenshare.logs = false; 359 screenshare.logs = false;
360 screenshare.ss = {std::vector<VideoStream>(), 0, 2, 1}; 360 screenshare.ss = {std::vector<VideoStream>(), 0, 2, 1};
361 RunTest(screenshare); 361 RunTest(screenshare);
362 } 362 }
363 #endif // !defined(RTC_DISABLE_VP9) 363 #endif // !defined(RTC_DISABLE_VP9)
364 364
365 TEST_F(FullStackTest, SimulcastVP8_3SL_High) {
366 VideoQualityTest::Params simulcast;
367 simulcast.call.send_side_bwe = true;
368 simulcast.video = {true, 1280, 720, 50,
369 800000, 2500000, 2500000, false,
370 "VP8", 1, 0, 400000,
371 false, false, "", "ConferenceMotion_1280_720_50"};
372 simulcast.analyzer = {"simulcast_vp8_3sl_demo", 0.0, 0.0,
373 kFullStackTestDurationSecs};
374 simulcast.pipe.loss_percent = 0;
375 simulcast.pipe.queue_delay_ms = 100;
376 VideoQualityTest::Params video_params_high;
377 video_params_high.video = {
378 true, 1280, 720, 50,
379 800000, 2500000, 2500000, false,
380 "VP8", 1, 0, 400000,
381 false, false, "", "ConferenceMotion_1280_720_50"};
382 VideoQualityTest::Params video_params_medium;
383 video_params_medium.video = {
384 true, 640, 360, 50,
385 150000, 500000, 700000, false,
386 "VP8", 1, 0, 400000,
387 false, false, "", "ConferenceMotion_1280_720_50"};
388 VideoQualityTest::Params video_params_low;
389 video_params_low.video = {
390 true, 320, 180, 50,
391 30000, 150000, 200000, false,
392 "VP8", 1, 0, 400000,
393 false, false, "", "ConferenceMotion_1280_720_50"};
394
395 std::vector<VideoStream> streams = {DefaultVideoStream(video_params_low),
396 DefaultVideoStream(video_params_medium),
397 DefaultVideoStream(video_params_high)};
398 simulcast.ss = {streams, 2, 1, 0};
399 RunTest(simulcast);
400 }
401
402 TEST_F(FullStackTest, SimulcastVP8_3SL_Medium) {
403 VideoQualityTest::Params simulcast;
404 simulcast.call.send_side_bwe = true;
405 simulcast.video = {true, 1280, 720, 50,
406 800000, 2500000, 2500000, false,
407 "VP8", 1, 0, 400000,
408 false, false, "", "ConferenceMotion_1280_720_50"};
409 simulcast.analyzer = {"simulcast_vp8_3sl_demo", 0.0, 0.0,
410 kFullStackTestDurationSecs};
411 simulcast.pipe.loss_percent = 0;
412 simulcast.pipe.queue_delay_ms = 100;
413 VideoQualityTest::Params video_params_high;
414 video_params_high.video = {
415 true, 1280, 720, 50,
416 800000, 2500000, 2500000, false,
417 "VP8", 1, 0, 400000,
418 false, false, "", "ConferenceMotion_1280_720_50"};
419 VideoQualityTest::Params video_params_medium;
420 video_params_medium.video = {
421 true, 640, 360, 50,
422 150000, 500000, 700000, false,
423 "VP8", 1, 0, 400000,
424 false, false, "", "ConferenceMotion_1280_720_50"};
425 VideoQualityTest::Params video_params_low;
426 video_params_low.video = {
427 true, 320, 180, 50,
428 30000, 150000, 200000, false,
429 "VP8", 1, 0, 400000,
430 false, false, "", "ConferenceMotion_1280_720_50"};
431
432 std::vector<VideoStream> streams = {DefaultVideoStream(video_params_low),
433 DefaultVideoStream(video_params_medium),
434 DefaultVideoStream(video_params_high)};
435 simulcast.ss = {streams, 1, 1, 0};
436 RunTest(simulcast);
437 }
438
439 TEST_F(FullStackTest, SimulcastVP8_3SL_Low) {
440 VideoQualityTest::Params simulcast;
441 simulcast.call.send_side_bwe = true;
442 simulcast.video = {true, 1280, 720, 50,
443 800000, 2500000, 2500000, false,
444 "VP8", 1, 0, 400000,
445 false, false, "", "ConferenceMotion_1280_720_50"};
446 simulcast.analyzer = {"simulcast_vp8_3sl_demo", 0.0, 0.0,
447 kFullStackTestDurationSecs};
448 simulcast.pipe.loss_percent = 0;
449 simulcast.pipe.queue_delay_ms = 100;
450 VideoQualityTest::Params video_params_high;
451 video_params_high.video = {
452 true, 1280, 720, 50,
453 800000, 2500000, 2500000, false,
454 "VP8", 1, 0, 400000,
455 false, false, "", "ConferenceMotion_1280_720_50"};
456 VideoQualityTest::Params video_params_medium;
457 video_params_medium.video = {
458 true, 640, 360, 50,
459 150000, 500000, 700000, false,
460 "VP8", 1, 0, 400000,
461 false, false, "", "ConferenceMotion_1280_720_50"};
462 VideoQualityTest::Params video_params_low;
463 video_params_low.video = {
464 true, 320, 180, 50,
465 30000, 150000, 200000, false,
466 "VP8", 1, 0, 400000,
467 false, false, "", "ConferenceMotion_1280_720_50"};
468
469 std::vector<VideoStream> streams = {DefaultVideoStream(video_params_low),
470 DefaultVideoStream(video_params_medium),
471 DefaultVideoStream(video_params_high)};
472 simulcast.ss = {streams, 0, 1, 0};
473 RunTest(simulcast);
474 }
475
365 } // namespace webrtc 476 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/common_video/include/frame_callback.h ('k') | webrtc/video/video_quality_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698