| OLD | NEW |
| 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 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 50000, | 746 50000, |
| 747 200000, | 747 200000, |
| 748 2000000, | 748 2000000, |
| 749 0.0, | 749 0.0, |
| 750 0.0, | 750 0.0, |
| 751 kFullStackTestDurationSecs, | 751 kFullStackTestDurationSecs, |
| 752 "VP8"}; | 752 "VP8"}; |
| 753 RunTest(screenshare_params); | 753 RunTest(screenshare_params); |
| 754 } | 754 } |
| 755 | 755 |
| 756 // Disabled on Android along with VP8 screenshare above. | 756 // Temporarilty disabled. |
| 757 TEST_F(FullStackTest, DISABLED_ON_ANDROID(ScreenshareSlidesVP9_2TL)) { | 757 // https://code.google.com/p/webrtc/issues/detail?id=4889 |
| 758 TEST_F(FullStackTest, DISABLED_ScreenshareSlidesVP9_2TL) { |
| 758 FullStackTestParams screenshare_params = { | 759 FullStackTestParams screenshare_params = { |
| 759 "screenshare_slides_vp9_2tl", | 760 "screenshare_slides_vp9_2tl", |
| 760 {"screenshare_slides", 1850, 1110, 5}, | 761 {"screenshare_slides", 1850, 1110, 5}, |
| 761 true, | 762 true, |
| 762 50000, | 763 50000, |
| 763 200000, | 764 200000, |
| 764 2000000, | 765 2000000, |
| 765 0.0, | 766 0.0, |
| 766 0.0, | 767 0.0, |
| 767 kFullStackTestDurationSecs, | 768 kFullStackTestDurationSecs, |
| 768 "VP9"}; | 769 "VP9"}; |
| 769 RunTest(screenshare_params); | 770 RunTest(screenshare_params); |
| 770 } | 771 } |
| 771 } // namespace webrtc | 772 } // namespace webrtc |
| OLD | NEW |