| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 {"foreman_cif_500kbps_100ms_32pkts_queue", 0.0, 0.0, | 100 {"foreman_cif_500kbps_100ms_32pkts_queue", 0.0, 0.0, |
| 101 kFullStackTestDurationSecs}}; | 101 kFullStackTestDurationSecs}}; |
| 102 foreman_cif.pipe.queue_length_packets = 32; | 102 foreman_cif.pipe.queue_length_packets = 32; |
| 103 foreman_cif.pipe.queue_delay_ms = 100; | 103 foreman_cif.pipe.queue_delay_ms = 100; |
| 104 foreman_cif.pipe.link_capacity_kbps = 500; | 104 foreman_cif.pipe.link_capacity_kbps = 500; |
| 105 RunTest(foreman_cif); | 105 RunTest(foreman_cif); |
| 106 } | 106 } |
| 107 | 107 |
| 108 TEST_F(FullStackTest, ForemanCif1000kbps100msLimitedQueue) { | 108 TEST_F(FullStackTest, ForemanCif1000kbps100msLimitedQueue) { |
| 109 VideoQualityTest::Params foreman_cif = { | 109 VideoQualityTest::Params foreman_cif = { |
| 110 {352, 288, 30, 30000, 500000, 2000000, "VP8", 1}, | 110 {352, 288, 30, 30000, 2000000, 2000000, "VP8", 1}, |
| 111 {"foreman_cif"}, | 111 {"foreman_cif"}, |
| 112 {}, | 112 {}, |
| 113 {"foreman_cif_1000kbps_100ms_32pkts_queue", 0.0, 0.0, | 113 {"foreman_cif_1000kbps_100ms_32pkts_queue", 0.0, 0.0, |
| 114 kFullStackTestDurationSecs}}; | 114 kFullStackTestDurationSecs}}; |
| 115 foreman_cif.pipe.queue_length_packets = 32; | 115 foreman_cif.pipe.queue_length_packets = 32; |
| 116 foreman_cif.pipe.queue_delay_ms = 100; | 116 foreman_cif.pipe.queue_delay_ms = 100; |
| 117 foreman_cif.pipe.link_capacity_kbps = 1000; | 117 foreman_cif.pipe.link_capacity_kbps = 1000; |
| 118 RunTest(foreman_cif); | 118 RunTest(foreman_cif); |
| 119 } | 119 } |
| 120 | 120 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 142 // Disabled on Android along with VP8 screenshare above. | 142 // Disabled on Android along with VP8 screenshare above. |
| 143 TEST_F(FullStackTest, DISABLED_ON_ANDROID(ScreenshareSlidesVP9_2TL)) { | 143 TEST_F(FullStackTest, DISABLED_ON_ANDROID(ScreenshareSlidesVP9_2TL)) { |
| 144 VideoQualityTest::Params screenshare = { | 144 VideoQualityTest::Params screenshare = { |
| 145 {1850, 1110, 5, 50000, 200000, 2000000, "VP9", 2, 400000}, | 145 {1850, 1110, 5, 50000, 200000, 2000000, "VP9", 2, 400000}, |
| 146 {}, | 146 {}, |
| 147 {true, 10}, | 147 {true, 10}, |
| 148 {"screenshare_slides_vp9_2tl", 0.0, 0.0, kFullStackTestDurationSecs}}; | 148 {"screenshare_slides_vp9_2tl", 0.0, 0.0, kFullStackTestDurationSecs}}; |
| 149 RunTest(screenshare); | 149 RunTest(screenshare); |
| 150 } | 150 } |
| 151 } // namespace webrtc | 151 } // namespace webrtc |
| OLD | NEW |