| Index: webrtc/video/full_stack.cc
|
| diff --git a/webrtc/video/full_stack.cc b/webrtc/video/full_stack.cc
|
| index a11b799a438294a9490872caea4e5957067edbdf..0f017dcdb88e8dbbb731d903cd7473e481cf4b18 100644
|
| --- a/webrtc/video/full_stack.cc
|
| +++ b/webrtc/video/full_stack.cc
|
| @@ -23,6 +23,15 @@ class FullStackTest : public VideoQualityTest {
|
| }
|
| };
|
|
|
| +// VideoQualityTest::Params params = {
|
| +// { ... }, // Common.
|
| +// { ... }, // Video-specific settings.
|
| +// { ... }, // Screenshare-specific settings.
|
| +// { ... }, // Analyzer settings.
|
| +// pipe, // FakeNetworkPipe::Config
|
| +// { ... }, // Spatial scalability.
|
| +// logs // bool
|
| +// };
|
|
|
| TEST_F(FullStackTest, ParisQcifWithoutPacketLoss) {
|
| VideoQualityTest::Params paris_qcif = {
|
| @@ -123,16 +132,16 @@ TEST_F(FullStackTest, ForemanCif1000kbps100msLimitedQueue) {
|
| #include "webrtc/test/testsupport/gtest_disable.h"
|
| TEST_F(FullStackTest, DISABLED_ON_ANDROID(ScreenshareSlidesVP8_2TL)) {
|
| VideoQualityTest::Params screenshare = {
|
| - {1850, 1110, 5, 50000, 200000, 2000000, "VP8", 2, 400000},
|
| - {}, // Video-specific.
|
| - {true, 10}, // Screenshare-specific.
|
| + {1850, 1110, 5, 50000, 200000, 2000000, "VP8", 2, 1, 400000},
|
| + {},
|
| + {true, 10},
|
| {"screenshare_slides", 0.0, 0.0, kFullStackTestDurationSecs}};
|
| RunTest(screenshare);
|
| }
|
|
|
| TEST_F(FullStackTest, DISABLED_ON_ANDROID(ScreenshareSlidesVP8_2TL_Scroll)) {
|
| VideoQualityTest::Params config = {
|
| - {1850, 1110 / 2, 5, 50000, 200000, 2000000, "VP8", 2, 400000},
|
| + {1850, 1110 / 2, 5, 50000, 200000, 2000000, "VP8", 2, 1, 400000},
|
| {},
|
| {true, 10, 2},
|
| {"screenshare_slides_scrolling", 0.0, 0.0, kFullStackTestDurationSecs}};
|
| @@ -142,7 +151,7 @@ TEST_F(FullStackTest, DISABLED_ON_ANDROID(ScreenshareSlidesVP8_2TL_Scroll)) {
|
| // Disabled on Android along with VP8 screenshare above.
|
| TEST_F(FullStackTest, DISABLED_ON_ANDROID(ScreenshareSlidesVP9_2TL)) {
|
| VideoQualityTest::Params screenshare = {
|
| - {1850, 1110, 5, 50000, 200000, 2000000, "VP9", 2, 400000},
|
| + {1850, 1110, 5, 50000, 200000, 2000000, "VP9", 2, 1, 400000},
|
| {},
|
| {true, 10},
|
| {"screenshare_slides_vp9_2tl", 0.0, 0.0, kFullStackTestDurationSecs}};
|
|
|