blob: c648de56b3b19160edc537b976ea5598cc957246 [file] [log] [blame]
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +00001/*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
Yves Gerey3e707812018-11-28 16:47:49 +010010#include <memory>
11#include <string>
12#include <utility>
13#include <vector>
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +000014
Yves Gerey3e707812018-11-28 16:47:49 +010015#include "absl/memory/memory.h"
16#include "absl/types/optional.h"
17#include "api/test/simulated_network.h"
Patrik Höglundd8f3c172018-09-26 14:39:17 +020018#include "api/test/test_dependency_factory.h"
Yves Gerey3e707812018-11-28 16:47:49 +010019#include "api/test/video_quality_test_fixture.h"
20#include "api/video_codecs/sdp_video_format.h"
21#include "api/video_codecs/video_codec.h"
22#include "api/video_codecs/video_encoder_config.h"
23#include "common_types.h" // NOLINT(build/include)
Emircan Uysaler0823eec2018-07-13 17:10:00 -070024#include "media/base/vp9_profile.h"
25#include "modules/video_coding/codecs/vp9/include/vp9.h"
Sebastian Janssonf8518882018-05-31 14:52:59 +020026#include "rtc_base/flags.h"
Mirko Bonadei17f48782018-09-28 08:51:10 +020027#include "system_wrappers/include/field_trial.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020028#include "test/field_trial.h"
29#include "test/gtest.h"
30#include "video/video_quality_test.h"
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +000031
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +000032namespace webrtc {
Sebastian Janssonf8518882018-05-31 14:52:59 +020033namespace flags {
34
Mirko Bonadei2dfa9982018-10-18 11:35:32 +020035WEBRTC_DEFINE_string(rtc_event_log_name,
36 "",
37 "Filename for rtc event log. Two files "
38 "with \"_send\" and \"_recv\" suffixes will be created.");
Sebastian Janssonf8518882018-05-31 14:52:59 +020039std::string RtcEventLogName() {
40 return static_cast<std::string>(FLAG_rtc_event_log_name);
41}
Mirko Bonadei2dfa9982018-10-18 11:35:32 +020042WEBRTC_DEFINE_string(rtp_dump_name,
43 "",
44 "Filename for dumped received RTP stream.");
Sebastian Janssonf8518882018-05-31 14:52:59 +020045std::string RtpDumpName() {
46 return static_cast<std::string>(FLAG_rtp_dump_name);
47}
Mirko Bonadei2dfa9982018-10-18 11:35:32 +020048WEBRTC_DEFINE_string(
49 encoded_frame_path,
50 "",
51 "The base path for encoded frame logs. Created files will have "
52 "the form <encoded_frame_path>.<n>.(recv|send.<m>).ivf");
Sebastian Janssonf8518882018-05-31 14:52:59 +020053std::string EncodedFramePath() {
54 return static_cast<std::string>(FLAG_encoded_frame_path);
55}
56} // namespace flags
57} // namespace webrtc
58
59namespace webrtc {
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +000060
sprang89c4a7e2017-06-30 13:27:40 -070061namespace {
brandtrdd369c62016-11-16 23:56:57 -080062static const int kFullStackTestDurationSecs = 45;
Patrik Höglundb6b29e02018-06-21 16:58:01 +020063const char kPacerPushBackExperiment[] =
64 "WebRTC-PacerPushbackExperiment/Enabled/";
Erik Språngd3438aa2018-11-08 16:56:43 +010065const char kVp8TrustedRateControllerFieldTrial[] =
66 "WebRTC-LibvpxVp8TrustedRateController/Enabled/";
pbos@webrtc.orgb613b5a2013-12-03 10:13:04 +000067
Patrik Höglundb6b29e02018-06-21 16:58:01 +020068struct ParamsWithLogging : public VideoQualityTest::Params {
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +000069 public:
Patrik Höglundb6b29e02018-06-21 16:58:01 +020070 ParamsWithLogging() {
71 // Use these logging flags by default, for everything.
Mirko Bonadei45a4c412018-07-31 15:07:28 +020072 logging = {flags::RtcEventLogName(), flags::RtpDumpName(),
73 flags::EncodedFramePath()};
Artem Titov75e36472018-10-08 12:28:56 +020074 this->config = BuiltInNetworkBehaviorConfig();
pbos@webrtc.org94015242013-10-16 11:05:37 +000075 }
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +000076};
77
Patrik Höglundb6b29e02018-06-21 16:58:01 +020078std::unique_ptr<VideoQualityTestFixtureInterface>
79CreateVideoQualityTestFixture() {
Patrik Höglundd8f3c172018-09-26 14:39:17 +020080 // The components will normally be nullptr (= use defaults), but it's possible
81 // for external test runners to override the list of injected components.
82 auto components = TestDependencyFactory::GetInstance().CreateComponents();
83 return absl::make_unique<VideoQualityTest>(std::move(components));
Patrik Höglundb6b29e02018-06-21 16:58:01 +020084}
85
Erik Språngb6b1cac2018-08-09 16:12:54 +020086// Takes the current active field trials set, and appends some new trials.
87std::string AppendFieldTrials(std::string new_trial_string) {
88 return std::string(field_trial::GetFieldTrialString()) + new_trial_string;
89}
Patrik Höglundb6b29e02018-06-21 16:58:01 +020090} // namespace
91
sprangce4aef12015-11-02 07:23:20 -080092// VideoQualityTest::Params params = {
93// { ... }, // Common.
94// { ... }, // Video-specific settings.
95// { ... }, // Screenshare-specific settings.
96// { ... }, // Analyzer settings.
97// pipe, // FakeNetworkPipe::Config
98// { ... }, // Spatial scalability.
99// logs // bool
100// };
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +0000101
philipeldd8b0d82018-09-27 11:18:10 +0200102class GenericDescriptorTest : public ::testing::TestWithParam<std::string> {
103 public:
philipelf638bbc2018-10-04 16:57:12 +0200104 GenericDescriptorTest()
Ilya Nikolaevskiy0500b522019-01-22 11:12:51 +0100105 : field_trial_(AppendFieldTrials(GetParam())),
philipelf638bbc2018-10-04 16:57:12 +0200106 generic_descriptor_enabled_(
107 field_trial::IsEnabled("WebRTC-GenericDescriptor")) {}
philipeldd8b0d82018-09-27 11:18:10 +0200108
109 std::string GetTestName(std::string base) {
philipelf638bbc2018-10-04 16:57:12 +0200110 if (generic_descriptor_enabled_)
philipeldd8b0d82018-09-27 11:18:10 +0200111 base += "_generic_descriptor";
112 return base;
113 }
114
philipelf638bbc2018-10-04 16:57:12 +0200115 bool GenericDescriptorEnabled() const { return generic_descriptor_enabled_; }
116
philipeldd8b0d82018-09-27 11:18:10 +0200117 private:
118 test::ScopedFieldTrials field_trial_;
philipelf638bbc2018-10-04 16:57:12 +0200119 bool generic_descriptor_enabled_;
philipeldd8b0d82018-09-27 11:18:10 +0200120};
121
Mirko Bonadei8ef57932018-11-16 14:38:03 +0100122#if defined(RTC_ENABLE_VP9)
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200123TEST(FullStackTest, ForemanCifWithoutPacketLossVp9) {
124 auto fixture = CreateVideoQualityTestFixture();
125 ParamsWithLogging foreman_cif;
brandtr93c5d032016-11-30 07:50:07 -0800126 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100127 foreman_cif.video[0] = {true, 352, 288, 30, 700000, 700000, 700000,
128 false, "VP9", 1, 0, 0, false, false,
129 true, "foreman_cif"};
brandtr93c5d032016-11-30 07:50:07 -0800130 foreman_cif.analyzer = {"foreman_cif_net_delay_0_0_plr_0_VP9", 0.0, 0.0,
131 kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200132 fixture->RunWithAnalyzer(foreman_cif);
asapersson88b0a222016-02-12 13:16:43 -0800133}
134
philipeldd8b0d82018-09-27 11:18:10 +0200135TEST_P(GenericDescriptorTest, ForemanCifPlr5Vp9) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200136 auto fixture = CreateVideoQualityTestFixture();
137 ParamsWithLogging foreman_cif;
brandtr93c5d032016-11-30 07:50:07 -0800138 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100139 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
140 false, "VP9", 1, 0, 0, false, false,
141 true, "foreman_cif"};
philipeldd8b0d82018-09-27 11:18:10 +0200142 foreman_cif.analyzer = {GetTestName("foreman_cif_delay_50_0_plr_5_VP9"), 0.0,
143 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200144 foreman_cif.config->loss_percent = 5;
145 foreman_cif.config->queue_delay_ms = 50;
philipelf638bbc2018-10-04 16:57:12 +0200146 foreman_cif.call.generic_descriptor = GenericDescriptorEnabled();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200147 fixture->RunWithAnalyzer(foreman_cif);
asapersson88b0a222016-02-12 13:16:43 -0800148}
Emircan Uysaler03e6ec92018-03-09 15:03:26 -0800149
Emircan Uysaler0823eec2018-07-13 17:10:00 -0700150TEST(FullStackTest, GeneratorWithoutPacketLossVp9Profile2) {
151 // Profile 2 might not be available on some platforms until
152 // https://bugs.chromium.org/p/webm/issues/detail?id=1544 is solved.
153 bool profile_2_is_supported = false;
154 for (const auto& codec : SupportedVP9Codecs()) {
155 if (ParseSdpForVP9Profile(codec.parameters)
156 .value_or(VP9Profile::kProfile0) == VP9Profile::kProfile2) {
157 profile_2_is_supported = true;
158 }
159 }
160 if (!profile_2_is_supported)
161 return;
162 auto fixture = CreateVideoQualityTestFixture();
163
164 SdpVideoFormat::Parameters vp92 = {
165 {kVP9FmtpProfileId, VP9ProfileToString(VP9Profile::kProfile2)}};
166 ParamsWithLogging generator;
167 generator.call.send_side_bwe = true;
168 generator.video[0] = {
169 true, 352, 288, 30, 700000, 700000, 700000, false, "VP9",
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100170 1, 0, 0, false, false, true, "GeneratorI010", 0, vp92};
Emircan Uysaler0823eec2018-07-13 17:10:00 -0700171 generator.analyzer = {"generator_net_delay_0_0_plr_0_VP9Profile2", 0.0, 0.0,
172 kFullStackTestDurationSecs};
173 fixture->RunWithAnalyzer(generator);
174}
175
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200176TEST(FullStackTest, ForemanCifWithoutPacketLossMultiplexI420Frame) {
177 auto fixture = CreateVideoQualityTestFixture();
178 ParamsWithLogging foreman_cif;
Emircan Uysaler03e6ec92018-03-09 15:03:26 -0800179 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100180 foreman_cif.video[0] = {true, 352, 288, 30, 700000, 700000, 700000,
181 false, "multiplex", 1, 0, 0, false, false,
182 false, "foreman_cif"};
Emircan Uysaler03e6ec92018-03-09 15:03:26 -0800183 foreman_cif.analyzer = {"foreman_cif_net_delay_0_0_plr_0_Multiplex", 0.0, 0.0,
184 kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200185 fixture->RunWithAnalyzer(foreman_cif);
Emircan Uysaler03e6ec92018-03-09 15:03:26 -0800186}
187
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200188TEST(FullStackTest, GeneratorWithoutPacketLossMultiplexI420AFrame) {
189 auto fixture = CreateVideoQualityTestFixture();
190
191 ParamsWithLogging generator;
Emircan Uysalerf1ff3bd2018-03-12 11:53:21 -0700192 generator.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100193 generator.video[0] = {
194 true, 352, 288, 30, 700000, 700000, 700000, false,
195 "multiplex", 1, 0, 0, false, false, false, "GeneratorI420A"};
Emircan Uysalerf1ff3bd2018-03-12 11:53:21 -0700196 generator.analyzer = {"generator_net_delay_0_0_plr_0_Multiplex", 0.0, 0.0,
197 kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200198 fixture->RunWithAnalyzer(generator);
Emircan Uysaler03e6ec92018-03-09 15:03:26 -0800199}
200
Mirko Bonadei8ef57932018-11-16 14:38:03 +0100201#endif // defined(RTC_ENABLE_VP9)
asapersson88b0a222016-02-12 13:16:43 -0800202
Patrik Höglund11bf2fa2018-04-09 12:20:50 +0200203#if defined(WEBRTC_LINUX)
204// Crashes on the linux trusty perf bot: bugs.webrtc.org/9129.
205#define MAYBE_ParisQcifWithoutPacketLoss DISABLED_ParisQcifWithoutPacketLoss
206#else
207#define MAYBE_ParisQcifWithoutPacketLoss ParisQcifWithoutPacketLoss
208#endif
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200209TEST(FullStackTest, MAYBE_ParisQcifWithoutPacketLoss) {
210 auto fixture = CreateVideoQualityTestFixture();
211 ParamsWithLogging paris_qcif;
minyue626bc952016-10-31 05:47:02 -0700212 paris_qcif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100213 paris_qcif.video[0] = {true, 176, 144, 30, 300000, 300000,
214 300000, false, "VP8", 1, 0, 0,
215 false, false, true, "paris_qcif"};
minyue626bc952016-10-31 05:47:02 -0700216 paris_qcif.analyzer = {"net_delay_0_0_plr_0", 36.0, 0.96,
217 kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200218 fixture->RunWithAnalyzer(paris_qcif);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000219}
220
philipeldd8b0d82018-09-27 11:18:10 +0200221TEST_P(GenericDescriptorTest, ForemanCifWithoutPacketLoss) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200222 auto fixture = CreateVideoQualityTestFixture();
stefan@webrtc.orgb8e9e442014-07-09 11:29:06 +0000223 // TODO(pbos): Decide on psnr/ssim thresholds for foreman_cif.
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200224 ParamsWithLogging foreman_cif;
minyue626bc952016-10-31 05:47:02 -0700225 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100226 foreman_cif.video[0] = {true, 352, 288, 30, 700000, 700000, 700000,
227 false, "VP8", 1, 0, 0, false, false,
228 true, "foreman_cif"};
philipeldd8b0d82018-09-27 11:18:10 +0200229 foreman_cif.analyzer = {GetTestName("foreman_cif_net_delay_0_0_plr_0"), 0.0,
230 0.0, kFullStackTestDurationSecs};
philipelf638bbc2018-10-04 16:57:12 +0200231 foreman_cif.call.generic_descriptor = GenericDescriptorEnabled();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200232 fixture->RunWithAnalyzer(foreman_cif);
pbos@webrtc.org994d0b72014-06-27 08:47:52 +0000233}
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +0000234
philipeldd8b0d82018-09-27 11:18:10 +0200235TEST_P(GenericDescriptorTest, ForemanCif30kbpsWithoutPacketLoss) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200236 auto fixture = CreateVideoQualityTestFixture();
237 ParamsWithLogging foreman_cif;
asaperssonfb6ad3b2016-12-16 06:54:01 -0800238 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100239 foreman_cif.video[0] = {true, 352, 288, 10, 30000, 30000, 30000,
240 false, "VP8", 1, 0, 0, false, false,
241 true, "foreman_cif"};
philipeldd8b0d82018-09-27 11:18:10 +0200242 foreman_cif.analyzer = {GetTestName("foreman_cif_30kbps_net_delay_0_0_plr_0"),
243 0.0, 0.0, kFullStackTestDurationSecs};
philipelf638bbc2018-10-04 16:57:12 +0200244 foreman_cif.call.generic_descriptor = GenericDescriptorEnabled();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200245 fixture->RunWithAnalyzer(foreman_cif);
asaperssonfb6ad3b2016-12-16 06:54:01 -0800246}
247
Erik Språngd3438aa2018-11-08 16:56:43 +0100248// TODO(webrtc:9722): Remove when experiment is cleaned up.
249TEST_P(GenericDescriptorTest,
250 ForemanCif30kbpsWithoutPacketLossTrustedRateControl) {
251 test::ScopedFieldTrials override_field_trials(
252 AppendFieldTrials(kVp8TrustedRateControllerFieldTrial));
253 auto fixture = CreateVideoQualityTestFixture();
254
255 ParamsWithLogging foreman_cif;
256 foreman_cif.call.send_side_bwe = true;
257 foreman_cif.video[0] = {true, 352, 288, 10, 30000, 30000, 30000,
258 false, "VP8", 1, 0, 0, false, false,
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100259 true, "foreman_cif"};
Erik Språngd3438aa2018-11-08 16:56:43 +0100260 foreman_cif.analyzer = {
261 GetTestName("foreman_cif_30kbps_net_delay_0_0_plr_0_trusted_rate_ctrl"),
262 0.0, 0.0, kFullStackTestDurationSecs};
263 foreman_cif.call.generic_descriptor = GenericDescriptorEnabled();
264 fixture->RunWithAnalyzer(foreman_cif);
265}
266
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100267// Link capacity below default start rate.
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200268TEST(FullStackTest, ForemanCifLink150kbpsWithoutPacketLoss) {
269 auto fixture = CreateVideoQualityTestFixture();
Niels Möller0e909822018-08-21 17:34:35 +0200270 ParamsWithLogging foreman_cif;
Niels Möller6aa415e2018-06-07 11:14:13 +0200271 foreman_cif.call.send_side_bwe = true;
272 foreman_cif.video[0] = {true, 352, 288, 30, 30000,
273 500000, 2000000, false, "VP8", 1,
274 0, 0, false, false, true, "foreman_cif"};
275 foreman_cif.analyzer = {"foreman_cif_link_150kbps_net_delay_0_0_plr_0",
276 0.0, 0.0,
277 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200278 foreman_cif.config->link_capacity_kbps = 150;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200279 fixture->RunWithAnalyzer(foreman_cif);
Niels Möller6aa415e2018-06-07 11:14:13 +0200280}
281
Erik Språng616b2332019-02-11 14:16:28 +0100282// Restricted network and encoder overproducing by 30%.
283TEST(FullStackTest, ForemanCifLink150kbpsBadRateController) {
284 auto fixture = CreateVideoQualityTestFixture();
285 ParamsWithLogging foreman_cif;
286 foreman_cif.call.send_side_bwe = true;
287 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
288 false, "VP8", 1, 0, 0, false, false,
289 true, "foreman_cif", 0, {}, 1.30};
290 foreman_cif.analyzer = {
291 "foreman_cif_link_150kbps_delay100ms_30pkts_queue_overshoot30", 0.0, 0.0,
292 kFullStackTestDurationSecs};
293 foreman_cif.config->link_capacity_kbps = 150;
294 foreman_cif.config->queue_length_packets = 30;
295 foreman_cif.config->queue_delay_ms = 100;
296 fixture->RunWithAnalyzer(foreman_cif);
297}
298
Erik Språng8b8d01a2019-03-02 20:54:55 +0100299// Weak 3G-style link: 250kbps, 1% loss, 100ms delay, 15 packets queue.
300// Packet rate and loss are low enough that loss will happen with ~3s interval.
301// This triggers protection overhead to toggle between zero and non-zero.
302// Link queue is restrictive enough to trigger loss on probes.
303TEST(FullStackTest, ForemanCifMediaCapacitySmallLossAndQueue) {
304 auto fixture = CreateVideoQualityTestFixture();
305 ParamsWithLogging foreman_cif;
306 foreman_cif.call.send_side_bwe = true;
307 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
308 false, "VP8", 1, 0, 0, false, false,
309 true, "foreman_cif", 0, {}, 1.30};
310 foreman_cif.analyzer = {"foreman_cif_link_250kbps_delay100ms_10pkts_loss1",
311 0.0, 0.0, kFullStackTestDurationSecs};
312 foreman_cif.config->link_capacity_kbps = 250;
313 foreman_cif.config->queue_length_packets = 10;
314 foreman_cif.config->queue_delay_ms = 100;
315 foreman_cif.config->loss_percent = 1;
316 fixture->RunWithAnalyzer(foreman_cif);
317}
318
philipeldd8b0d82018-09-27 11:18:10 +0200319TEST_P(GenericDescriptorTest, ForemanCifPlr5) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200320 auto fixture = CreateVideoQualityTestFixture();
321 ParamsWithLogging foreman_cif;
minyue626bc952016-10-31 05:47:02 -0700322 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100323 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
324 false, "VP8", 1, 0, 0, false, false,
325 true, "foreman_cif"};
philipeldd8b0d82018-09-27 11:18:10 +0200326 foreman_cif.analyzer = {GetTestName("foreman_cif_delay_50_0_plr_5"), 0.0, 0.0,
Lu Liu6f683242018-09-25 18:48:48 +0000327 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200328 foreman_cif.config->loss_percent = 5;
329 foreman_cif.config->queue_delay_ms = 50;
philipelf638bbc2018-10-04 16:57:12 +0200330 foreman_cif.call.generic_descriptor = GenericDescriptorEnabled();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200331 fixture->RunWithAnalyzer(foreman_cif);
stefan@webrtc.orgc216b9a2014-10-14 10:38:49 +0000332}
333
philipeldd8b0d82018-09-27 11:18:10 +0200334TEST_P(GenericDescriptorTest, ForemanCifPlr5Ulpfec) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200335 auto fixture = CreateVideoQualityTestFixture();
336 ParamsWithLogging foreman_cif;
brandtr93c5d032016-11-30 07:50:07 -0800337 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100338 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
339 false, "VP8", 1, 0, 0, true, false,
340 true, "foreman_cif"};
philipeldd8b0d82018-09-27 11:18:10 +0200341 foreman_cif.analyzer = {GetTestName("foreman_cif_delay_50_0_plr_5_ulpfec"),
342 0.0, 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200343 foreman_cif.config->loss_percent = 5;
344 foreman_cif.config->queue_delay_ms = 50;
philipelf638bbc2018-10-04 16:57:12 +0200345 foreman_cif.call.generic_descriptor = GenericDescriptorEnabled();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200346 fixture->RunWithAnalyzer(foreman_cif);
brandtr93c5d032016-11-30 07:50:07 -0800347}
348
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200349TEST(FullStackTest, ForemanCifPlr5Flexfec) {
350 auto fixture = CreateVideoQualityTestFixture();
351 ParamsWithLogging foreman_cif;
brandtr93c5d032016-11-30 07:50:07 -0800352 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100353 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
354 false, "VP8", 1, 0, 0, false, true,
355 true, "foreman_cif"};
brandtr93c5d032016-11-30 07:50:07 -0800356 foreman_cif.analyzer = {"foreman_cif_delay_50_0_plr_5_flexfec", 0.0, 0.0,
357 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200358 foreman_cif.config->loss_percent = 5;
359 foreman_cif.config->queue_delay_ms = 50;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200360 fixture->RunWithAnalyzer(foreman_cif);
brandtr93c5d032016-11-30 07:50:07 -0800361}
362
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200363TEST(FullStackTest, ForemanCif500kbpsPlr3Flexfec) {
364 auto fixture = CreateVideoQualityTestFixture();
365 ParamsWithLogging foreman_cif;
stefan889d9652017-07-05 03:03:02 -0700366 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100367 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
368 false, "VP8", 1, 0, 0, false, true,
369 true, "foreman_cif"};
stefan889d9652017-07-05 03:03:02 -0700370 foreman_cif.analyzer = {"foreman_cif_500kbps_delay_50_0_plr_3_flexfec", 0.0,
371 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200372 foreman_cif.config->loss_percent = 3;
373 foreman_cif.config->link_capacity_kbps = 500;
374 foreman_cif.config->queue_delay_ms = 50;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200375 fixture->RunWithAnalyzer(foreman_cif);
stefan889d9652017-07-05 03:03:02 -0700376}
377
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200378TEST(FullStackTest, ForemanCif500kbpsPlr3Ulpfec) {
379 auto fixture = CreateVideoQualityTestFixture();
380 ParamsWithLogging foreman_cif;
stefan889d9652017-07-05 03:03:02 -0700381 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100382 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
383 false, "VP8", 1, 0, 0, true, false,
384 true, "foreman_cif"};
stefan889d9652017-07-05 03:03:02 -0700385 foreman_cif.analyzer = {"foreman_cif_500kbps_delay_50_0_plr_3_ulpfec", 0.0,
386 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200387 foreman_cif.config->loss_percent = 3;
388 foreman_cif.config->link_capacity_kbps = 500;
389 foreman_cif.config->queue_delay_ms = 50;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200390 fixture->RunWithAnalyzer(foreman_cif);
stefan889d9652017-07-05 03:03:02 -0700391}
392
brandtrdd369c62016-11-16 23:56:57 -0800393#if defined(WEBRTC_USE_H264)
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200394TEST(FullStackTest, ForemanCifWithoutPacketlossH264) {
395 auto fixture = CreateVideoQualityTestFixture();
brandtr93c5d032016-11-30 07:50:07 -0800396 // TODO(pbos): Decide on psnr/ssim thresholds for foreman_cif.
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200397 ParamsWithLogging foreman_cif;
brandtr93c5d032016-11-30 07:50:07 -0800398 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100399 foreman_cif.video[0] = {true, 352, 288, 30, 700000, 700000, 700000,
400 false, "H264", 1, 0, 0, false, false,
401 true, "foreman_cif"};
brandtr93c5d032016-11-30 07:50:07 -0800402 foreman_cif.analyzer = {"foreman_cif_net_delay_0_0_plr_0_H264", 0.0, 0.0,
403 kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200404 fixture->RunWithAnalyzer(foreman_cif);
brandtrdd369c62016-11-16 23:56:57 -0800405}
406
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200407TEST(FullStackTest, ForemanCif30kbpsWithoutPacketlossH264) {
408 auto fixture = CreateVideoQualityTestFixture();
409 ParamsWithLogging foreman_cif;
asaperssonfb6ad3b2016-12-16 06:54:01 -0800410 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100411 foreman_cif.video[0] = {true, 352, 288, 10, 30000, 30000, 30000,
412 false, "H264", 1, 0, 0, false, false,
413 true, "foreman_cif"};
asaperssonfb6ad3b2016-12-16 06:54:01 -0800414 foreman_cif.analyzer = {"foreman_cif_30kbps_net_delay_0_0_plr_0_H264", 0.0,
415 0.0, kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200416 fixture->RunWithAnalyzer(foreman_cif);
asaperssonfb6ad3b2016-12-16 06:54:01 -0800417}
418
philipeldd8b0d82018-09-27 11:18:10 +0200419TEST_P(GenericDescriptorTest, ForemanCifPlr5H264) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200420 auto fixture = CreateVideoQualityTestFixture();
421 ParamsWithLogging foreman_cif;
brandtr93c5d032016-11-30 07:50:07 -0800422 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100423 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
424 false, "H264", 1, 0, 0, false, false,
425 true, "foreman_cif"};
philipeldd8b0d82018-09-27 11:18:10 +0200426 foreman_cif.analyzer = {GetTestName("foreman_cif_delay_50_0_plr_5_H264"), 0.0,
427 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200428 foreman_cif.config->loss_percent = 5;
429 foreman_cif.config->queue_delay_ms = 50;
philipelf638bbc2018-10-04 16:57:12 +0200430 foreman_cif.call.generic_descriptor = GenericDescriptorEnabled();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200431 fixture->RunWithAnalyzer(foreman_cif);
brandtrdd369c62016-11-16 23:56:57 -0800432}
433
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200434TEST(FullStackTest, ForemanCifPlr5H264SpsPpsIdrIsKeyframe) {
Rasmus Brandt88f080a2017-11-02 14:28:06 +0100435 test::ScopedFieldTrials override_field_trials(
Erik Språngb6b1cac2018-08-09 16:12:54 +0200436 AppendFieldTrials("WebRTC-SpsPpsIdrIsH264Keyframe/Enabled/"));
Erik Språngd3438aa2018-11-08 16:56:43 +0100437 auto fixture = CreateVideoQualityTestFixture();
Rasmus Brandt88f080a2017-11-02 14:28:06 +0100438
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200439 ParamsWithLogging foreman_cif;
Rasmus Brandt88f080a2017-11-02 14:28:06 +0100440 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100441 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
442 false, "H264", 1, 0, 0, false, false,
443 true, "foreman_cif"};
Rasmus Brandt88f080a2017-11-02 14:28:06 +0100444 foreman_cif.analyzer = {"foreman_cif_delay_50_0_plr_5_H264_sps_pps_idr", 0.0,
445 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200446 foreman_cif.config->loss_percent = 5;
447 foreman_cif.config->queue_delay_ms = 50;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200448 fixture->RunWithAnalyzer(foreman_cif);
Rasmus Brandt88f080a2017-11-02 14:28:06 +0100449}
450
brandtrdd369c62016-11-16 23:56:57 -0800451// Verify that this is worth the bot time, before enabling.
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200452TEST(FullStackTest, ForemanCifPlr5H264Flexfec) {
453 auto fixture = CreateVideoQualityTestFixture();
454 ParamsWithLogging foreman_cif;
brandtr93c5d032016-11-30 07:50:07 -0800455 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100456 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
457 false, "H264", 1, 0, 0, false, true,
458 true, "foreman_cif"};
brandtr93c5d032016-11-30 07:50:07 -0800459 foreman_cif.analyzer = {"foreman_cif_delay_50_0_plr_5_H264_flexfec", 0.0, 0.0,
460 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200461 foreman_cif.config->loss_percent = 5;
462 foreman_cif.config->queue_delay_ms = 50;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200463 fixture->RunWithAnalyzer(foreman_cif);
brandtrdd369c62016-11-16 23:56:57 -0800464}
465
466// Ulpfec with H264 is an unsupported combination, so this test is only useful
467// for debugging. It is therefore disabled by default.
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200468TEST(FullStackTest, DISABLED_ForemanCifPlr5H264Ulpfec) {
469 auto fixture = CreateVideoQualityTestFixture();
470 ParamsWithLogging foreman_cif;
brandtr93c5d032016-11-30 07:50:07 -0800471 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100472 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
473 false, "H264", 1, 0, 0, true, false,
474 true, "foreman_cif"};
brandtr93c5d032016-11-30 07:50:07 -0800475 foreman_cif.analyzer = {"foreman_cif_delay_50_0_plr_5_H264_ulpfec", 0.0, 0.0,
476 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200477 foreman_cif.config->loss_percent = 5;
478 foreman_cif.config->queue_delay_ms = 50;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200479 fixture->RunWithAnalyzer(foreman_cif);
brandtrdd369c62016-11-16 23:56:57 -0800480}
481#endif // defined(WEBRTC_USE_H264)
482
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200483TEST(FullStackTest, ForemanCif500kbps) {
484 auto fixture = CreateVideoQualityTestFixture();
485 ParamsWithLogging foreman_cif;
minyue626bc952016-10-31 05:47:02 -0700486 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100487 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
488 false, "VP8", 1, 0, 0, false, false,
489 true, "foreman_cif"};
minyue626bc952016-10-31 05:47:02 -0700490 foreman_cif.analyzer = {"foreman_cif_500kbps", 0.0, 0.0,
491 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200492 foreman_cif.config->queue_length_packets = 0;
493 foreman_cif.config->queue_delay_ms = 0;
494 foreman_cif.config->link_capacity_kbps = 500;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200495 fixture->RunWithAnalyzer(foreman_cif);
stefan@webrtc.orgb8e9e442014-07-09 11:29:06 +0000496}
497
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200498TEST(FullStackTest, ForemanCif500kbpsLimitedQueue) {
499 auto fixture = CreateVideoQualityTestFixture();
500 ParamsWithLogging foreman_cif;
minyue626bc952016-10-31 05:47:02 -0700501 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100502 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
503 false, "VP8", 1, 0, 0, false, false,
504 true, "foreman_cif"};
minyue626bc952016-10-31 05:47:02 -0700505 foreman_cif.analyzer = {"foreman_cif_500kbps_32pkts_queue", 0.0, 0.0,
506 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200507 foreman_cif.config->queue_length_packets = 32;
508 foreman_cif.config->queue_delay_ms = 0;
509 foreman_cif.config->link_capacity_kbps = 500;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200510 fixture->RunWithAnalyzer(foreman_cif);
stefan@webrtc.orgb8e9e442014-07-09 11:29:06 +0000511}
512
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200513TEST(FullStackTest, ForemanCif500kbps100ms) {
514 auto fixture = CreateVideoQualityTestFixture();
515 ParamsWithLogging foreman_cif;
minyue626bc952016-10-31 05:47:02 -0700516 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100517 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
518 false, "VP8", 1, 0, 0, false, false,
519 true, "foreman_cif"};
minyue626bc952016-10-31 05:47:02 -0700520 foreman_cif.analyzer = {"foreman_cif_500kbps_100ms", 0.0, 0.0,
521 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200522 foreman_cif.config->queue_length_packets = 0;
523 foreman_cif.config->queue_delay_ms = 100;
524 foreman_cif.config->link_capacity_kbps = 500;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200525 fixture->RunWithAnalyzer(foreman_cif);
stefan@webrtc.orgb8e9e442014-07-09 11:29:06 +0000526}
527
philipeldd8b0d82018-09-27 11:18:10 +0200528TEST_P(GenericDescriptorTest, ForemanCif500kbps100msLimitedQueue) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200529 auto fixture = CreateVideoQualityTestFixture();
530 ParamsWithLogging foreman_cif;
minyue626bc952016-10-31 05:47:02 -0700531 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100532 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
533 false, "VP8", 1, 0, 0, false, false,
534 true, "foreman_cif"};
philipeldd8b0d82018-09-27 11:18:10 +0200535 foreman_cif.analyzer = {GetTestName("foreman_cif_500kbps_100ms_32pkts_queue"),
536 0.0, 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200537 foreman_cif.config->queue_length_packets = 32;
538 foreman_cif.config->queue_delay_ms = 100;
539 foreman_cif.config->link_capacity_kbps = 500;
philipelf638bbc2018-10-04 16:57:12 +0200540 foreman_cif.call.generic_descriptor = GenericDescriptorEnabled();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200541 fixture->RunWithAnalyzer(foreman_cif);
stefanb1797672016-08-11 07:00:57 -0700542}
543
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200544TEST(FullStackTest, ForemanCif500kbps100msLimitedQueueRecvBwe) {
545 auto fixture = CreateVideoQualityTestFixture();
546 ParamsWithLogging foreman_cif;
brandtr93c5d032016-11-30 07:50:07 -0800547 foreman_cif.call.send_side_bwe = false;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100548 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 500000, 2000000,
549 false, "VP8", 1, 0, 0, false, false,
550 true, "foreman_cif"};
brandtr93c5d032016-11-30 07:50:07 -0800551 foreman_cif.analyzer = {"foreman_cif_500kbps_100ms_32pkts_queue_recv_bwe",
552 0.0, 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200553 foreman_cif.config->queue_length_packets = 32;
554 foreman_cif.config->queue_delay_ms = 100;
555 foreman_cif.config->link_capacity_kbps = 500;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200556 fixture->RunWithAnalyzer(foreman_cif);
stefan@webrtc.orgb8e9e442014-07-09 11:29:06 +0000557}
558
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200559TEST(FullStackTest, ForemanCif1000kbps100msLimitedQueue) {
560 auto fixture = CreateVideoQualityTestFixture();
561 ParamsWithLogging foreman_cif;
minyue626bc952016-10-31 05:47:02 -0700562 foreman_cif.call.send_side_bwe = true;
Stefan Holmer1f7a0082019-01-11 15:39:08 +0100563 foreman_cif.video[0] = {true, 352, 288, 30, 30000, 2000000, 2000000,
564 false, "VP8", 1, 0, 0, false, false,
565 true, "foreman_cif"};
minyue626bc952016-10-31 05:47:02 -0700566 foreman_cif.analyzer = {"foreman_cif_1000kbps_100ms_32pkts_queue", 0.0, 0.0,
567 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200568 foreman_cif.config->queue_length_packets = 32;
569 foreman_cif.config->queue_delay_ms = 100;
570 foreman_cif.config->link_capacity_kbps = 1000;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200571 fixture->RunWithAnalyzer(foreman_cif);
stefan@webrtc.orgb8e9e442014-07-09 11:29:06 +0000572}
sprang@webrtc.org131bea82015-02-18 12:46:06 +0000573
sprangff19d352017-09-06 07:14:02 -0700574// TODO(sprang): Remove this if we have the similar ModerateLimits below?
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200575TEST(FullStackTest, ConferenceMotionHd2000kbps100msLimitedQueue) {
576 auto fixture = CreateVideoQualityTestFixture();
577 ParamsWithLogging conf_motion_hd;
minyue626bc952016-10-31 05:47:02 -0700578 conf_motion_hd.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100579 conf_motion_hd.video[0] = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000580 true, 1280, 720, 50, 30000,
581 3000000, 3000000, false, "VP8", 1,
Niels Möller6aa415e2018-06-07 11:14:13 +0200582 0, 0, false, false, false, "ConferenceMotion_1280_720_50"};
minyue626bc952016-10-31 05:47:02 -0700583 conf_motion_hd.analyzer = {"conference_motion_hd_2000kbps_100ms_32pkts_queue",
584 0.0, 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200585 conf_motion_hd.config->queue_length_packets = 32;
586 conf_motion_hd.config->queue_delay_ms = 100;
587 conf_motion_hd.config->link_capacity_kbps = 2000;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200588 fixture->RunWithAnalyzer(conf_motion_hd);
stefanb1797672016-08-11 07:00:57 -0700589}
590
Erik Språngd3438aa2018-11-08 16:56:43 +0100591// TODO(webrtc:9722): Remove when experiment is cleaned up.
592TEST(FullStackTest, ConferenceMotionHd1TLModerateLimitsWhitelistVp8) {
593 test::ScopedFieldTrials override_field_trials(
594 AppendFieldTrials(kVp8TrustedRateControllerFieldTrial));
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200595 auto fixture = CreateVideoQualityTestFixture();
Erik Språngd3438aa2018-11-08 16:56:43 +0100596
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200597 ParamsWithLogging conf_motion_hd;
sprangff19d352017-09-06 07:14:02 -0700598 conf_motion_hd.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100599 conf_motion_hd.video[0] = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000600 true, 1280, 720, 50, 30000,
601 3000000, 3000000, false, "VP8", 1,
Niels Möller6aa415e2018-06-07 11:14:13 +0200602 -1, 0, false, false, false, "ConferenceMotion_1280_720_50"};
Erik Språngd3438aa2018-11-08 16:56:43 +0100603 conf_motion_hd.analyzer = {
604 "conference_motion_hd_1tl_moderate_limits_trusted_rate_ctrl", 0.0, 0.0,
605 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200606 conf_motion_hd.config->queue_length_packets = 50;
607 conf_motion_hd.config->loss_percent = 3;
608 conf_motion_hd.config->queue_delay_ms = 100;
609 conf_motion_hd.config->link_capacity_kbps = 2000;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200610 fixture->RunWithAnalyzer(conf_motion_hd);
sprangff19d352017-09-06 07:14:02 -0700611}
612
philipeldd8b0d82018-09-27 11:18:10 +0200613TEST_P(GenericDescriptorTest, ConferenceMotionHd2TLModerateLimits) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200614 auto fixture = CreateVideoQualityTestFixture();
615 ParamsWithLogging conf_motion_hd;
sprangff19d352017-09-06 07:14:02 -0700616 conf_motion_hd.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100617 conf_motion_hd.video[0] = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000618 true, 1280, 720, 50, 30000,
619 3000000, 3000000, false, "VP8", 2,
Niels Möller6aa415e2018-06-07 11:14:13 +0200620 -1, 0, false, false, false, "ConferenceMotion_1280_720_50"};
philipeldd8b0d82018-09-27 11:18:10 +0200621 conf_motion_hd.analyzer = {
622 GetTestName("conference_motion_hd_2tl_moderate_limits"), 0.0, 0.0,
623 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200624 conf_motion_hd.config->queue_length_packets = 50;
625 conf_motion_hd.config->loss_percent = 3;
626 conf_motion_hd.config->queue_delay_ms = 100;
627 conf_motion_hd.config->link_capacity_kbps = 2000;
philipelf638bbc2018-10-04 16:57:12 +0200628 conf_motion_hd.call.generic_descriptor = GenericDescriptorEnabled();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200629 fixture->RunWithAnalyzer(conf_motion_hd);
sprangff19d352017-09-06 07:14:02 -0700630}
631
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200632TEST(FullStackTest, ConferenceMotionHd3TLModerateLimits) {
633 auto fixture = CreateVideoQualityTestFixture();
634 ParamsWithLogging conf_motion_hd;
sprangff19d352017-09-06 07:14:02 -0700635 conf_motion_hd.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100636 conf_motion_hd.video[0] = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000637 true, 1280, 720, 50, 30000,
638 3000000, 3000000, false, "VP8", 3,
Niels Möller6aa415e2018-06-07 11:14:13 +0200639 -1, 0, false, false, false, "ConferenceMotion_1280_720_50"};
sprangff19d352017-09-06 07:14:02 -0700640 conf_motion_hd.analyzer = {"conference_motion_hd_3tl_moderate_limits", 0.0,
641 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200642 conf_motion_hd.config->queue_length_packets = 50;
643 conf_motion_hd.config->loss_percent = 3;
644 conf_motion_hd.config->queue_delay_ms = 100;
645 conf_motion_hd.config->link_capacity_kbps = 2000;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200646 fixture->RunWithAnalyzer(conf_motion_hd);
sprangff19d352017-09-06 07:14:02 -0700647}
648
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200649TEST(FullStackTest, ConferenceMotionHd4TLModerateLimits) {
650 auto fixture = CreateVideoQualityTestFixture();
651 ParamsWithLogging conf_motion_hd;
sprangff19d352017-09-06 07:14:02 -0700652 conf_motion_hd.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100653 conf_motion_hd.video[0] = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000654 true, 1280, 720, 50, 30000,
655 3000000, 3000000, false, "VP8", 4,
Niels Möller6aa415e2018-06-07 11:14:13 +0200656 -1, 0, false, false, false, "ConferenceMotion_1280_720_50"};
sprangff19d352017-09-06 07:14:02 -0700657 conf_motion_hd.analyzer = {"conference_motion_hd_4tl_moderate_limits", 0.0,
658 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200659 conf_motion_hd.config->queue_length_packets = 50;
660 conf_motion_hd.config->loss_percent = 3;
661 conf_motion_hd.config->queue_delay_ms = 100;
662 conf_motion_hd.config->link_capacity_kbps = 2000;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200663 fixture->RunWithAnalyzer(conf_motion_hd);
sprangff19d352017-09-06 07:14:02 -0700664}
665
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200666TEST(FullStackTest, ConferenceMotionHd3TLModerateLimitsAltTLPattern) {
Erik Språngb6b1cac2018-08-09 16:12:54 +0200667 test::ScopedFieldTrials field_trial(
668 AppendFieldTrials("WebRTC-UseShortVP8TL3Pattern/Enabled/"));
Erik Språngd3438aa2018-11-08 16:56:43 +0100669 auto fixture = CreateVideoQualityTestFixture();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200670 ParamsWithLogging conf_motion_hd;
sprangff19d352017-09-06 07:14:02 -0700671 conf_motion_hd.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100672 conf_motion_hd.video[0] = {
Rasmus Brandt35836932018-10-23 09:17:24 +0200673 true, 1280, 720, 50,
674 30000, 3000000, 3000000, false,
675 "VP8", 3, -1, 0,
676 false, false, false, "ConferenceMotion_1280_720_50"};
677 conf_motion_hd.analyzer = {"conference_motion_hd_3tl_alt_moderate_limits",
678 0.0, 0.0, kFullStackTestDurationSecs};
679 conf_motion_hd.config->queue_length_packets = 50;
680 conf_motion_hd.config->loss_percent = 3;
681 conf_motion_hd.config->queue_delay_ms = 100;
682 conf_motion_hd.config->link_capacity_kbps = 2000;
683 fixture->RunWithAnalyzer(conf_motion_hd);
684}
685
686TEST(FullStackTest,
687 ConferenceMotionHd3TLModerateLimitsAltTLPatternAndBaseHeavyTLAllocation) {
688 auto fixture = CreateVideoQualityTestFixture();
689 test::ScopedFieldTrials field_trial(
690 AppendFieldTrials("WebRTC-UseShortVP8TL3Pattern/Enabled/"
691 "WebRTC-UseBaseHeavyVP8TL3RateAllocation/Enabled/"));
692 ParamsWithLogging conf_motion_hd;
693 conf_motion_hd.call.send_side_bwe = true;
694 conf_motion_hd.video[0] = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000695 true, 1280, 720, 50, 30000,
696 3000000, 3000000, false, "VP8", 3,
Niels Möller6aa415e2018-06-07 11:14:13 +0200697 -1, 0, false, false, false, "ConferenceMotion_1280_720_50"};
Rasmus Brandt35836932018-10-23 09:17:24 +0200698 conf_motion_hd.analyzer = {
699 "conference_motion_hd_3tl_alt_heavy_moderate_limits", 0.0, 0.0,
700 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200701 conf_motion_hd.config->queue_length_packets = 50;
702 conf_motion_hd.config->loss_percent = 3;
703 conf_motion_hd.config->queue_delay_ms = 100;
704 conf_motion_hd.config->link_capacity_kbps = 2000;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200705 fixture->RunWithAnalyzer(conf_motion_hd);
sprangff19d352017-09-06 07:14:02 -0700706}
707
Mirko Bonadei8ef57932018-11-16 14:38:03 +0100708#if defined(RTC_ENABLE_VP9)
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200709TEST(FullStackTest, ConferenceMotionHd2000kbps100msLimitedQueueVP9) {
710 auto fixture = CreateVideoQualityTestFixture();
711 ParamsWithLogging conf_motion_hd;
jianj390e64d2017-02-03 09:51:23 -0800712 conf_motion_hd.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100713 conf_motion_hd.video[0] = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000714 true, 1280, 720, 50, 30000,
715 3000000, 3000000, false, "VP9", 1,
Niels Möller6aa415e2018-06-07 11:14:13 +0200716 0, 0, false, false, false, "ConferenceMotion_1280_720_50"};
jianj390e64d2017-02-03 09:51:23 -0800717 conf_motion_hd.analyzer = {
718 "conference_motion_hd_2000kbps_100ms_32pkts_queue_vp9", 0.0, 0.0,
719 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200720 conf_motion_hd.config->queue_length_packets = 32;
721 conf_motion_hd.config->queue_delay_ms = 100;
722 conf_motion_hd.config->link_capacity_kbps = 2000;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200723 fixture->RunWithAnalyzer(conf_motion_hd);
jianj390e64d2017-02-03 09:51:23 -0800724}
725#endif
726
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200727TEST(FullStackTest, ScreenshareSlidesVP8_2TL) {
728 auto fixture = CreateVideoQualityTestFixture();
729 ParamsWithLogging screenshare;
minyue626bc952016-10-31 05:47:02 -0700730 screenshare.call.send_side_bwe = true;
Erik Språng28bb3912018-07-11 16:06:55 +0200731 screenshare.video[0] = {true, 1850, 1110, 5, 50000, 200000,
732 1000000, false, "VP8", 2, 1, 400000,
733 false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100734 screenshare.screenshare[0] = {true, false, 10};
minyue626bc952016-10-31 05:47:02 -0700735 screenshare.analyzer = {"screenshare_slides", 0.0, 0.0,
736 kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200737 fixture->RunWithAnalyzer(screenshare);
Erik Språng6ee69aa2015-09-03 15:58:05 +0200738}
739
Ilya Nikolaevskiyf08dd9d2018-10-09 17:22:15 +0200740#if !defined(WEBRTC_MAC)
Oskar Sundbom8bacf252019-01-08 16:40:08 +0100741// All the tests using this constant are disabled on Mac.
Ilya Nikolaevskiyf08dd9d2018-10-09 17:22:15 +0200742const char kScreenshareSimulcastExperiment[] =
743 "WebRTC-SimulcastScreenshare/Enabled/";
744
Oskar Sundbom8bacf252019-01-08 16:40:08 +0100745// TODO(bugs.webrtc.org/9840): Investigate why is this test flaky on Win/Mac.
746#if !defined(WEBRTC_WIN)
Ilya Nikolaevskiydda5fdc2019-02-27 10:00:06 +0100747TEST(FullStackTest, ScreenshareSlidesVP8_2TL_Simulcast) {
Erik Språngd3438aa2018-11-08 16:56:43 +0100748 test::ScopedFieldTrials field_trial(
749 AppendFieldTrials(kScreenshareSimulcastExperiment));
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200750 auto fixture = CreateVideoQualityTestFixture();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200751 ParamsWithLogging screenshare;
ilnikcb8c1462017-03-09 09:23:30 -0800752 screenshare.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100753 screenshare.screenshare[0] = {true, false, 10};
Ilya Nikolaevskiydda5fdc2019-02-27 10:00:06 +0100754 screenshare.video[0] = {true, 1850, 1110, 30, 800000, 2500000,
Ilya Nikolaevskiyaec663e2019-02-27 12:52:11 +0100755 2500000, false, "VP8", 2, 1, 400000,
Ilya Nikolaevskiydda5fdc2019-02-27 10:00:06 +0100756 false, false, false, ""};
ilnikcb8c1462017-03-09 09:23:30 -0800757 screenshare.analyzer = {"screenshare_slides_simulcast", 0.0, 0.0,
758 kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200759 ParamsWithLogging screenshare_params_high;
Ilya Nikolaevskiydda5fdc2019-02-27 10:00:06 +0100760 screenshare_params_high.video[0] = {
761 true, 1850, 1110, 60, 600000, 1250000, 1250000, false,
762 "VP8", 2, 0, 400000, false, false, false, ""};
ilnikcb8c1462017-03-09 09:23:30 -0800763 VideoQualityTest::Params screenshare_params_low;
Ilya Nikolaevskiydda5fdc2019-02-27 10:00:06 +0100764 screenshare_params_low.video[0] = {true, 1850, 1110, 5, 30000, 200000,
Erik Språng28bb3912018-07-11 16:06:55 +0200765 1000000, false, "VP8", 2, 0, 400000,
766 false, false, false, ""};
ilnikcb8c1462017-03-09 09:23:30 -0800767
768 std::vector<VideoStream> streams = {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200769 VideoQualityTest::DefaultVideoStream(screenshare_params_low, 0),
770 VideoQualityTest::DefaultVideoStream(screenshare_params_high, 0)};
Sergey Silkin57027362018-05-15 09:12:05 +0200771 screenshare.ss[0] = {
772 streams, 1, 1, 0, InterLayerPredMode::kOn, std::vector<SpatialLayer>(),
773 false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200774 fixture->RunWithAnalyzer(screenshare);
ilnikcb8c1462017-03-09 09:23:30 -0800775}
Oskar Sundbom8bacf252019-01-08 16:40:08 +0100776#endif // !defined(WEBRTC_WIN)
Ilya Nikolaevskiyf08dd9d2018-10-09 17:22:15 +0200777#endif // !defined(WEBRTC_MAC)
ilnikcb8c1462017-03-09 09:23:30 -0800778
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200779TEST(FullStackTest, ScreenshareSlidesVP8_2TL_Scroll) {
780 auto fixture = CreateVideoQualityTestFixture();
781 ParamsWithLogging config;
minyue626bc952016-10-31 05:47:02 -0700782 config.call.send_side_bwe = true;
Erik Språng28bb3912018-07-11 16:06:55 +0200783 config.video[0] = {true, 1850, 1110 / 2, 5, 50000, 200000,
784 1000000, false, "VP8", 2, 1, 400000,
785 false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100786 config.screenshare[0] = {true, false, 10, 2};
minyue626bc952016-10-31 05:47:02 -0700787 config.analyzer = {"screenshare_slides_scrolling", 0.0, 0.0,
788 kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200789 fixture->RunWithAnalyzer(config);
ivica028cf482015-07-30 02:15:56 -0700790}
791
philipeldd8b0d82018-09-27 11:18:10 +0200792TEST_P(GenericDescriptorTest, ScreenshareSlidesVP8_2TL_LossyNet) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200793 auto fixture = CreateVideoQualityTestFixture();
794 ParamsWithLogging screenshare;
minyue626bc952016-10-31 05:47:02 -0700795 screenshare.call.send_side_bwe = true;
Erik Språng28bb3912018-07-11 16:06:55 +0200796 screenshare.video[0] = {true, 1850, 1110, 5, 50000, 200000,
797 1000000, false, "VP8", 2, 1, 400000,
798 false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100799 screenshare.screenshare[0] = {true, false, 10};
philipeldd8b0d82018-09-27 11:18:10 +0200800 screenshare.analyzer = {GetTestName("screenshare_slides_lossy_net"), 0.0, 0.0,
Lu Liu6f683242018-09-25 18:48:48 +0000801 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200802 screenshare.config->loss_percent = 5;
803 screenshare.config->queue_delay_ms = 200;
804 screenshare.config->link_capacity_kbps = 500;
philipelf638bbc2018-10-04 16:57:12 +0200805 screenshare.call.generic_descriptor = GenericDescriptorEnabled();
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200806 fixture->RunWithAnalyzer(screenshare);
sprangee37de32015-11-23 06:10:23 -0800807}
808
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200809TEST(FullStackTest, ScreenshareSlidesVP8_2TL_VeryLossyNet) {
810 auto fixture = CreateVideoQualityTestFixture();
811 ParamsWithLogging screenshare;
minyue626bc952016-10-31 05:47:02 -0700812 screenshare.call.send_side_bwe = true;
Erik Språng28bb3912018-07-11 16:06:55 +0200813 screenshare.video[0] = {true, 1850, 1110, 5, 50000, 200000,
814 1000000, false, "VP8", 2, 1, 400000,
815 false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100816 screenshare.screenshare[0] = {true, false, 10};
minyue626bc952016-10-31 05:47:02 -0700817 screenshare.analyzer = {"screenshare_slides_very_lossy", 0.0, 0.0,
818 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200819 screenshare.config->loss_percent = 10;
820 screenshare.config->queue_delay_ms = 200;
821 screenshare.config->link_capacity_kbps = 500;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200822 fixture->RunWithAnalyzer(screenshare);
sprangee37de32015-11-23 06:10:23 -0800823}
824
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200825TEST(FullStackTest, ScreenshareSlidesVP8_2TL_LossyNetRestrictedQueue) {
826 auto fixture = CreateVideoQualityTestFixture();
827 ParamsWithLogging screenshare;
sprange566e172017-06-08 01:29:15 -0700828 screenshare.call.send_side_bwe = true;
Erik Språng28bb3912018-07-11 16:06:55 +0200829 screenshare.video[0] = {true, 1850, 1110, 5, 50000, 200000,
830 1000000, false, "VP8", 2, 1, 400000,
831 false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100832 screenshare.screenshare[0] = {true, false, 10};
sprange566e172017-06-08 01:29:15 -0700833 screenshare.analyzer = {"screenshare_slides_lossy_limited", 0.0, 0.0,
834 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200835 screenshare.config->loss_percent = 5;
836 screenshare.config->link_capacity_kbps = 200;
837 screenshare.config->queue_length_packets = 30;
sprange566e172017-06-08 01:29:15 -0700838
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200839 fixture->RunWithAnalyzer(screenshare);
sprange566e172017-06-08 01:29:15 -0700840}
841
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200842TEST(FullStackTest, ScreenshareSlidesVP8_2TL_ModeratelyRestricted) {
843 auto fixture = CreateVideoQualityTestFixture();
844 ParamsWithLogging screenshare;
sprang89c4a7e2017-06-30 13:27:40 -0700845 screenshare.call.send_side_bwe = true;
Erik Språng28bb3912018-07-11 16:06:55 +0200846 screenshare.video[0] = {true, 1850, 1110, 5, 50000, 200000,
847 1000000, false, "VP8", 2, 1, 400000,
848 false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100849 screenshare.screenshare[0] = {true, false, 10};
sprang89c4a7e2017-06-30 13:27:40 -0700850 screenshare.analyzer = {"screenshare_slides_moderately_restricted", 0.0, 0.0,
851 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +0200852 screenshare.config->loss_percent = 1;
853 screenshare.config->link_capacity_kbps = 1200;
854 screenshare.config->queue_length_packets = 30;
sprang89c4a7e2017-06-30 13:27:40 -0700855
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200856 fixture->RunWithAnalyzer(screenshare);
sprang89c4a7e2017-06-30 13:27:40 -0700857}
858
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200859const ParamsWithLogging::Video kSvcVp9Video = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000860 true, 1280, 720, 30, 800000,
861 2500000, 2500000, false, "VP9", 3,
Niels Möller6aa415e2018-06-07 11:14:13 +0200862 2, 400000, false, false, false, "ConferenceMotion_1280_720_50"};
ilnik566c43b2017-03-07 04:42:54 -0800863
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200864const ParamsWithLogging::Video kSimulcastVp8VideoHigh = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000865 true, 1280, 720, 30, 800000,
866 2500000, 2500000, false, "VP8", 3,
Niels Möller6aa415e2018-06-07 11:14:13 +0200867 2, 400000, false, false, false, "ConferenceMotion_1280_720_50"};
ilnik566c43b2017-03-07 04:42:54 -0800868
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200869const ParamsWithLogging::Video kSimulcastVp8VideoMedium = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000870 true, 640, 360, 30, 150000,
871 500000, 700000, false, "VP8", 3,
Niels Möller6aa415e2018-06-07 11:14:13 +0200872 2, 400000, false, false, false, "ConferenceMotion_1280_720_50"};
ilnik566c43b2017-03-07 04:42:54 -0800873
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200874const ParamsWithLogging::Video kSimulcastVp8VideoLow = {
Rasmus Brandt31027342017-09-29 13:48:12 +0000875 true, 320, 180, 30, 30000,
876 150000, 200000, false, "VP8", 3,
Niels Möller6aa415e2018-06-07 11:14:13 +0200877 2, 400000, false, false, false, "ConferenceMotion_1280_720_50"};
ilnik566c43b2017-03-07 04:42:54 -0800878
Mirko Bonadei8ef57932018-11-16 14:38:03 +0100879#if defined(RTC_ENABLE_VP9)
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200880TEST(FullStackTest, ScreenshareSlidesVP9_2SL) {
881 auto fixture = CreateVideoQualityTestFixture();
882 ParamsWithLogging screenshare;
minyue626bc952016-10-31 05:47:02 -0700883 screenshare.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100884 screenshare.video[0] = {true, 1850, 1110, 5, 50000,
885 200000, 2000000, false, "VP9", 1,
Niels Möller6aa415e2018-06-07 11:14:13 +0200886 0, 400000, false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100887 screenshare.screenshare[0] = {true, false, 10};
minyue626bc952016-10-31 05:47:02 -0700888 screenshare.analyzer = {"screenshare_slides_vp9_2sl", 0.0, 0.0,
889 kFullStackTestDurationSecs};
Sergey Silkin57027362018-05-15 09:12:05 +0200890 screenshare.ss[0] = {
891 std::vector<VideoStream>(), 0, 2, 1, InterLayerPredMode::kOn,
892 std::vector<SpatialLayer>(), false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200893 fixture->RunWithAnalyzer(screenshare);
sprang@webrtc.org131bea82015-02-18 12:46:06 +0000894}
ilnik2a8c2f52017-02-15 02:23:28 -0800895
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200896TEST(FullStackTest, VP9SVC_3SL_High) {
897 auto fixture = CreateVideoQualityTestFixture();
898 ParamsWithLogging simulcast;
ilnik2a8c2f52017-02-15 02:23:28 -0800899 simulcast.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100900 simulcast.video[0] = kSvcVp9Video;
ilnik2a8c2f52017-02-15 02:23:28 -0800901 simulcast.analyzer = {"vp9svc_3sl_high", 0.0, 0.0,
902 kFullStackTestDurationSecs};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200903
Sergey Silkin57027362018-05-15 09:12:05 +0200904 simulcast.ss[0] = {
905 std::vector<VideoStream>(), 0, 3, 2, InterLayerPredMode::kOn,
906 std::vector<SpatialLayer>(), false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200907 fixture->RunWithAnalyzer(simulcast);
ilnik2a8c2f52017-02-15 02:23:28 -0800908}
909
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200910TEST(FullStackTest, VP9SVC_3SL_Medium) {
911 auto fixture = CreateVideoQualityTestFixture();
912 ParamsWithLogging simulcast;
ilnik2a8c2f52017-02-15 02:23:28 -0800913 simulcast.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100914 simulcast.video[0] = kSvcVp9Video;
ilnik2a8c2f52017-02-15 02:23:28 -0800915 simulcast.analyzer = {"vp9svc_3sl_medium", 0.0, 0.0,
916 kFullStackTestDurationSecs};
Sergey Silkin57027362018-05-15 09:12:05 +0200917 simulcast.ss[0] = {
918 std::vector<VideoStream>(), 0, 3, 1, InterLayerPredMode::kOn,
919 std::vector<SpatialLayer>(), false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200920 fixture->RunWithAnalyzer(simulcast);
ilnik2a8c2f52017-02-15 02:23:28 -0800921}
922
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200923TEST(FullStackTest, VP9SVC_3SL_Low) {
924 auto fixture = CreateVideoQualityTestFixture();
925 ParamsWithLogging simulcast;
ilnik2a8c2f52017-02-15 02:23:28 -0800926 simulcast.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +0100927 simulcast.video[0] = kSvcVp9Video;
ilnik2a8c2f52017-02-15 02:23:28 -0800928 simulcast.analyzer = {"vp9svc_3sl_low", 0.0, 0.0, kFullStackTestDurationSecs};
Sergey Silkin57027362018-05-15 09:12:05 +0200929 simulcast.ss[0] = {
930 std::vector<VideoStream>(), 0, 3, 0, InterLayerPredMode::kOn,
931 std::vector<SpatialLayer>(), false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200932 fixture->RunWithAnalyzer(simulcast);
ilnik2a8c2f52017-02-15 02:23:28 -0800933}
Sergey Silkin0643fd62018-05-17 12:50:53 +0200934
Sergey Silkin7f978f12018-09-10 12:01:49 +0000935// bugs.webrtc.org/9506
936#if !defined(WEBRTC_MAC)
937
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200938TEST(FullStackTest, VP9KSVC_3SL_High) {
Sergey Silkine7ce8882018-10-03 18:04:57 +0200939 webrtc::test::ScopedFieldTrials override_trials(
940 AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"));
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200941 auto fixture = CreateVideoQualityTestFixture();
942 ParamsWithLogging simulcast;
Sergey Silkin0643fd62018-05-17 12:50:53 +0200943 simulcast.call.send_side_bwe = true;
944 simulcast.video[0] = kSvcVp9Video;
945 simulcast.analyzer = {"vp9ksvc_3sl_high", 0.0, 0.0,
946 kFullStackTestDurationSecs};
947 simulcast.ss[0] = {
948 std::vector<VideoStream>(), 0, 3, 2, InterLayerPredMode::kOnKeyPic,
949 std::vector<SpatialLayer>(), false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200950 fixture->RunWithAnalyzer(simulcast);
Sergey Silkin0643fd62018-05-17 12:50:53 +0200951}
952
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200953TEST(FullStackTest, VP9KSVC_3SL_Medium) {
Sergey Silkine7ce8882018-10-03 18:04:57 +0200954 webrtc::test::ScopedFieldTrials override_trials(
955 AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"));
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200956 auto fixture = CreateVideoQualityTestFixture();
957 ParamsWithLogging simulcast;
Sergey Silkin0643fd62018-05-17 12:50:53 +0200958 simulcast.call.send_side_bwe = true;
959 simulcast.video[0] = kSvcVp9Video;
960 simulcast.analyzer = {"vp9ksvc_3sl_medium", 0.0, 0.0,
961 kFullStackTestDurationSecs};
962 simulcast.ss[0] = {
963 std::vector<VideoStream>(), 0, 3, 1, InterLayerPredMode::kOnKeyPic,
964 std::vector<SpatialLayer>(), false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200965 fixture->RunWithAnalyzer(simulcast);
Sergey Silkin0643fd62018-05-17 12:50:53 +0200966}
967
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200968TEST(FullStackTest, VP9KSVC_3SL_Low) {
Sergey Silkine7ce8882018-10-03 18:04:57 +0200969 webrtc::test::ScopedFieldTrials override_trials(
970 AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"));
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200971 auto fixture = CreateVideoQualityTestFixture();
972 ParamsWithLogging simulcast;
Sergey Silkin0643fd62018-05-17 12:50:53 +0200973 simulcast.call.send_side_bwe = true;
974 simulcast.video[0] = kSvcVp9Video;
975 simulcast.analyzer = {"vp9ksvc_3sl_low", 0.0, 0.0,
976 kFullStackTestDurationSecs};
977 simulcast.ss[0] = {
978 std::vector<VideoStream>(), 0, 3, 0, InterLayerPredMode::kOnKeyPic,
979 std::vector<SpatialLayer>(), false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200980 fixture->RunWithAnalyzer(simulcast);
Sergey Silkin0643fd62018-05-17 12:50:53 +0200981}
“Michael277a6562018-06-01 14:09:19 -0500982
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200983TEST(FullStackTest, VP9KSVC_3SL_Medium_Network_Restricted) {
Sergey Silkine7ce8882018-10-03 18:04:57 +0200984 webrtc::test::ScopedFieldTrials override_trials(
985 AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"));
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200986 auto fixture = CreateVideoQualityTestFixture();
Niels Möller0e909822018-08-21 17:34:35 +0200987 ParamsWithLogging simulcast;
“Michael277a6562018-06-01 14:09:19 -0500988 simulcast.call.send_side_bwe = true;
989 simulcast.video[0] = kSvcVp9Video;
990 simulcast.analyzer = {"vp9ksvc_3sl_medium_network_restricted", 0.0, 0.0,
991 kFullStackTestDurationSecs};
992 simulcast.ss[0] = {
Sergey Silkine7ce8882018-10-03 18:04:57 +0200993 std::vector<VideoStream>(), 0, 3, -1, InterLayerPredMode::kOnKeyPic,
“Michael277a6562018-06-01 14:09:19 -0500994 std::vector<SpatialLayer>(), false};
Artem Titovf18b3522018-08-28 16:54:24 +0200995 simulcast.config->link_capacity_kbps = 1000;
Sergey Silkine7ce8882018-10-03 18:04:57 +0200996 simulcast.config->queue_delay_ms = 100;
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200997 fixture->RunWithAnalyzer(simulcast);
“Michael277a6562018-06-01 14:09:19 -0500998}
Erik Språngd3438aa2018-11-08 16:56:43 +0100999
1000// TODO(webrtc:9722): Remove when experiment is cleaned up.
1001TEST(FullStackTest, VP9KSVC_3SL_Medium_Network_Restricted_Trusted_Rate) {
1002 webrtc::test::ScopedFieldTrials override_trials(
1003 AppendFieldTrials("WebRTC-Vp9IssueKeyFrameOnLayerDeactivation/Enabled/"
1004 "WebRTC-LibvpxVp9TrustedRateController/Enabled/"));
1005 auto fixture = CreateVideoQualityTestFixture();
1006 ParamsWithLogging simulcast;
1007 simulcast.call.send_side_bwe = true;
1008 simulcast.video[0] = kSvcVp9Video;
1009 simulcast.analyzer = {"vp9ksvc_3sl_medium_network_restricted_trusted_rate",
1010 0.0, 0.0, kFullStackTestDurationSecs};
1011 simulcast.ss[0] = {
1012 std::vector<VideoStream>(), 0, 3, -1, InterLayerPredMode::kOnKeyPic,
1013 std::vector<SpatialLayer>(), false};
1014 simulcast.config->link_capacity_kbps = 1000;
1015 simulcast.config->queue_delay_ms = 100;
1016 fixture->RunWithAnalyzer(simulcast);
1017}
Sergey Silkin7f978f12018-09-10 12:01:49 +00001018#endif // !defined(WEBRTC_MAC)
1019
Mirko Bonadei8ef57932018-11-16 14:38:03 +01001020#endif // defined(RTC_ENABLE_VP9)
brandtr93c5d032016-11-30 07:50:07 -08001021
ilnik6b826ef2017-06-16 06:53:48 -07001022// Android bots can't handle FullHD, so disable the test.
Ilya Nikolaevskiy7e5203f2018-09-10 12:04:50 +00001023// TODO(bugs.webrtc.org/9220): Investigate source of flakiness on Mac.
1024#if defined(WEBRTC_ANDROID) || defined(WEBRTC_MAC)
ilnik6b826ef2017-06-16 06:53:48 -07001025#define MAYBE_SimulcastFullHdOveruse DISABLED_SimulcastFullHdOveruse
1026#else
1027#define MAYBE_SimulcastFullHdOveruse SimulcastFullHdOveruse
1028#endif
1029
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001030TEST(FullStackTest, MAYBE_SimulcastFullHdOveruse) {
1031 auto fixture = CreateVideoQualityTestFixture();
1032 ParamsWithLogging simulcast;
ilnik6b826ef2017-06-16 06:53:48 -07001033 simulcast.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001034 simulcast.video[0] = {true, 1920, 1080, 30, 800000,
1035 2500000, 2500000, false, "VP8", 3,
Niels Möller6aa415e2018-06-07 11:14:13 +02001036 2, 400000, false, false, false, "Generator"};
ilnik6b826ef2017-06-16 06:53:48 -07001037 simulcast.analyzer = {"simulcast_HD_high", 0.0, 0.0,
1038 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +02001039 simulcast.config->loss_percent = 0;
1040 simulcast.config->queue_delay_ms = 100;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001041 std::vector<VideoStream> streams = {
1042 VideoQualityTest::DefaultVideoStream(simulcast, 0),
1043 VideoQualityTest::DefaultVideoStream(simulcast, 0),
1044 VideoQualityTest::DefaultVideoStream(simulcast, 0)
1045 };
Sergey Silkin57027362018-05-15 09:12:05 +02001046 simulcast.ss[0] = {
1047 streams, 2, 1, 0, InterLayerPredMode::kOn, std::vector<SpatialLayer>(),
1048 true};
Erik Språngb6b1cac2018-08-09 16:12:54 +02001049 webrtc::test::ScopedFieldTrials override_trials(AppendFieldTrials(
1050 "WebRTC-ForceSimulatedOveruseIntervalMs/1000-50000-300/"));
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001051 fixture->RunWithAnalyzer(simulcast);
ilnik6b826ef2017-06-16 06:53:48 -07001052}
1053
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001054TEST(FullStackTest, SimulcastVP8_3SL_High) {
1055 auto fixture = CreateVideoQualityTestFixture();
1056 ParamsWithLogging simulcast;
ilnik3dd5ad92017-02-09 04:58:53 -08001057 simulcast.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001058 simulcast.video[0] = kSimulcastVp8VideoHigh;
ilnik2a8c2f52017-02-15 02:23:28 -08001059 simulcast.analyzer = {"simulcast_vp8_3sl_high", 0.0, 0.0,
ilnik3dd5ad92017-02-09 04:58:53 -08001060 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +02001061 simulcast.config->loss_percent = 0;
1062 simulcast.config->queue_delay_ms = 100;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001063 ParamsWithLogging video_params_high;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001064 video_params_high.video[0] = kSimulcastVp8VideoHigh;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001065 ParamsWithLogging video_params_medium;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001066 video_params_medium.video[0] = kSimulcastVp8VideoMedium;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001067 ParamsWithLogging video_params_low;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001068 video_params_low.video[0] = kSimulcastVp8VideoLow;
ilnik3dd5ad92017-02-09 04:58:53 -08001069
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001070 std::vector<VideoStream> streams = {
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001071 VideoQualityTest::DefaultVideoStream(video_params_low, 0),
1072 VideoQualityTest::DefaultVideoStream(video_params_medium, 0),
1073 VideoQualityTest::DefaultVideoStream(video_params_high, 0)};
Sergey Silkin57027362018-05-15 09:12:05 +02001074 simulcast.ss[0] = {
1075 streams, 2, 1, 0, InterLayerPredMode::kOn, std::vector<SpatialLayer>(),
1076 false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001077 fixture->RunWithAnalyzer(simulcast);
ilnik3dd5ad92017-02-09 04:58:53 -08001078}
1079
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001080TEST(FullStackTest, SimulcastVP8_3SL_Medium) {
1081 auto fixture = CreateVideoQualityTestFixture();
1082 ParamsWithLogging simulcast;
ilnik3dd5ad92017-02-09 04:58:53 -08001083 simulcast.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001084 simulcast.video[0] = kSimulcastVp8VideoHigh;
ilnik2a8c2f52017-02-15 02:23:28 -08001085 simulcast.analyzer = {"simulcast_vp8_3sl_medium", 0.0, 0.0,
ilnik3dd5ad92017-02-09 04:58:53 -08001086 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +02001087 simulcast.config->loss_percent = 0;
1088 simulcast.config->queue_delay_ms = 100;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001089 ParamsWithLogging video_params_high;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001090 video_params_high.video[0] = kSimulcastVp8VideoHigh;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001091 ParamsWithLogging video_params_medium;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001092 video_params_medium.video[0] = kSimulcastVp8VideoMedium;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001093 ParamsWithLogging video_params_low;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001094 video_params_low.video[0] = kSimulcastVp8VideoLow;
ilnik3dd5ad92017-02-09 04:58:53 -08001095
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001096 std::vector<VideoStream> streams = {
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001097 VideoQualityTest::DefaultVideoStream(video_params_low, 0),
1098 VideoQualityTest::DefaultVideoStream(video_params_medium, 0),
1099 VideoQualityTest::DefaultVideoStream(video_params_high, 0)};
Sergey Silkin57027362018-05-15 09:12:05 +02001100 simulcast.ss[0] = {
1101 streams, 1, 1, 0, InterLayerPredMode::kOn, std::vector<SpatialLayer>(),
1102 false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001103 fixture->RunWithAnalyzer(simulcast);
ilnik3dd5ad92017-02-09 04:58:53 -08001104}
1105
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001106TEST(FullStackTest, SimulcastVP8_3SL_Low) {
1107 auto fixture = CreateVideoQualityTestFixture();
1108 ParamsWithLogging simulcast;
ilnik3dd5ad92017-02-09 04:58:53 -08001109 simulcast.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001110 simulcast.video[0] = kSimulcastVp8VideoHigh;
ilnik2a8c2f52017-02-15 02:23:28 -08001111 simulcast.analyzer = {"simulcast_vp8_3sl_low", 0.0, 0.0,
ilnik3dd5ad92017-02-09 04:58:53 -08001112 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +02001113 simulcast.config->loss_percent = 0;
1114 simulcast.config->queue_delay_ms = 100;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001115 ParamsWithLogging video_params_high;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001116 video_params_high.video[0] = kSimulcastVp8VideoHigh;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001117 ParamsWithLogging video_params_medium;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001118 video_params_medium.video[0] = kSimulcastVp8VideoMedium;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001119 ParamsWithLogging video_params_low;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001120 video_params_low.video[0] = kSimulcastVp8VideoLow;
ilnik3dd5ad92017-02-09 04:58:53 -08001121
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001122 std::vector<VideoStream> streams = {
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001123 VideoQualityTest::DefaultVideoStream(video_params_low, 0),
1124 VideoQualityTest::DefaultVideoStream(video_params_medium, 0),
1125 VideoQualityTest::DefaultVideoStream(video_params_high, 0)};
Sergey Silkin57027362018-05-15 09:12:05 +02001126 simulcast.ss[0] = {
1127 streams, 0, 1, 0, InterLayerPredMode::kOn, std::vector<SpatialLayer>(),
1128 false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001129 fixture->RunWithAnalyzer(simulcast);
ilnik3dd5ad92017-02-09 04:58:53 -08001130}
1131
Emircan Uysaler7c03bdc2019-01-16 15:07:56 -05001132// This test assumes ideal network conditions with target bandwidth being
1133// available and exercises WebRTC calls with a high target bitrate(100 Mbps).
1134// Android32 bots can't handle this high bitrate, so disable test for those.
1135#if defined(WEBRTC_ANDROID)
Emircan Uysaler62f55322019-01-16 17:48:47 -05001136#define MAYBE_HighBitrateWithFakeCodec DISABLED_HighBitrateWithFakeCodec
Emircan Uysaler7c03bdc2019-01-16 15:07:56 -05001137#else
1138#define MAYBE_HighBitrateWithFakeCodec HighBitrateWithFakeCodec
1139#endif // defined(WEBRTC_ANDROID)
1140TEST(FullStackTest, MAYBE_HighBitrateWithFakeCodec) {
1141 auto fixture = CreateVideoQualityTestFixture();
1142 const int target_bitrate = 100000000;
1143 ParamsWithLogging generator;
1144 generator.call.send_side_bwe = true;
1145 generator.call.call_bitrate_config.min_bitrate_bps = target_bitrate;
1146 generator.call.call_bitrate_config.start_bitrate_bps = target_bitrate;
1147 generator.call.call_bitrate_config.max_bitrate_bps = target_bitrate;
1148 generator.video[0] = {true,
1149 360,
1150 240,
1151 30,
1152 target_bitrate / 2,
1153 target_bitrate,
1154 target_bitrate * 2,
1155 false,
1156 "FakeCodec",
1157 1,
1158 0,
1159 0,
1160 false,
1161 false,
1162 false,
1163 "Generator"};
1164 generator.analyzer = {"high_bitrate_with_fake_codec", 0.0, 0.0,
1165 kFullStackTestDurationSecs};
1166 fixture->RunWithAnalyzer(generator);
1167}
1168
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001169TEST(FullStackTest, LargeRoomVP8_5thumb) {
1170 auto fixture = CreateVideoQualityTestFixture();
1171 ParamsWithLogging large_room;
ilnika014cc52017-03-07 04:21:04 -08001172 large_room.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001173 large_room.video[0] = kSimulcastVp8VideoHigh;
ilnika014cc52017-03-07 04:21:04 -08001174 large_room.analyzer = {"largeroom_5thumb", 0.0, 0.0,
1175 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +02001176 large_room.config->loss_percent = 0;
1177 large_room.config->queue_delay_ms = 100;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001178 ParamsWithLogging video_params_high;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001179 video_params_high.video[0] = kSimulcastVp8VideoHigh;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001180 ParamsWithLogging video_params_medium;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001181 video_params_medium.video[0] = kSimulcastVp8VideoMedium;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001182 ParamsWithLogging video_params_low;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001183 video_params_low.video[0] = kSimulcastVp8VideoLow;
ilnika014cc52017-03-07 04:21:04 -08001184
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001185 std::vector<VideoStream> streams = {
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001186 VideoQualityTest::DefaultVideoStream(video_params_low, 0),
1187 VideoQualityTest::DefaultVideoStream(video_params_medium, 0),
1188 VideoQualityTest::DefaultVideoStream(video_params_high, 0)};
ilnik98436952017-07-13 00:47:03 -07001189 large_room.call.num_thumbnails = 5;
Sergey Silkin57027362018-05-15 09:12:05 +02001190 large_room.ss[0] = {
1191 streams, 2, 1, 0, InterLayerPredMode::kOn, std::vector<SpatialLayer>(),
1192 false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001193 fixture->RunWithAnalyzer(large_room);
ilnika014cc52017-03-07 04:21:04 -08001194}
1195
oprypin743117f2017-09-15 05:24:24 -07001196#if defined(WEBRTC_ANDROID) || defined(WEBRTC_IOS)
1197// Fails on mobile devices:
ilnikf89a7382017-03-07 06:15:27 -08001198// https://bugs.chromium.org/p/webrtc/issues/detail?id=7301
1199#define MAYBE_LargeRoomVP8_50thumb DISABLED_LargeRoomVP8_50thumb
ilnik3ae7c252017-03-08 01:17:35 -08001200#define MAYBE_LargeRoomVP8_15thumb DISABLED_LargeRoomVP8_15thumb
ilnikf89a7382017-03-07 06:15:27 -08001201#else
1202#define MAYBE_LargeRoomVP8_50thumb LargeRoomVP8_50thumb
ilnik3ae7c252017-03-08 01:17:35 -08001203#define MAYBE_LargeRoomVP8_15thumb LargeRoomVP8_15thumb
ilnikf89a7382017-03-07 06:15:27 -08001204#endif
1205
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001206TEST(FullStackTest, MAYBE_LargeRoomVP8_15thumb) {
1207 auto fixture = CreateVideoQualityTestFixture();
1208 ParamsWithLogging large_room;
ilnika014cc52017-03-07 04:21:04 -08001209 large_room.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001210 large_room.video[0] = kSimulcastVp8VideoHigh;
ilnika014cc52017-03-07 04:21:04 -08001211 large_room.analyzer = {"largeroom_15thumb", 0.0, 0.0,
1212 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +02001213 large_room.config->loss_percent = 0;
1214 large_room.config->queue_delay_ms = 100;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001215 ParamsWithLogging video_params_high;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001216 video_params_high.video[0] = kSimulcastVp8VideoHigh;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001217 ParamsWithLogging video_params_medium;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001218 video_params_medium.video[0] = kSimulcastVp8VideoMedium;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001219 ParamsWithLogging video_params_low;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001220 video_params_low.video[0] = kSimulcastVp8VideoLow;
ilnika014cc52017-03-07 04:21:04 -08001221
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001222 std::vector<VideoStream> streams = {
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001223 VideoQualityTest::DefaultVideoStream(video_params_low, 0),
1224 VideoQualityTest::DefaultVideoStream(video_params_medium, 0),
1225 VideoQualityTest::DefaultVideoStream(video_params_high, 0)};
ilnik98436952017-07-13 00:47:03 -07001226 large_room.call.num_thumbnails = 15;
Sergey Silkin57027362018-05-15 09:12:05 +02001227 large_room.ss[0] = {
1228 streams, 2, 1, 0, InterLayerPredMode::kOn, std::vector<SpatialLayer>(),
1229 false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001230 fixture->RunWithAnalyzer(large_room);
ilnika014cc52017-03-07 04:21:04 -08001231}
1232
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001233TEST(FullStackTest, MAYBE_LargeRoomVP8_50thumb) {
1234 auto fixture = CreateVideoQualityTestFixture();
1235 ParamsWithLogging large_room;
ilnika014cc52017-03-07 04:21:04 -08001236 large_room.call.send_side_bwe = true;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001237 large_room.video[0] = kSimulcastVp8VideoHigh;
ilnika014cc52017-03-07 04:21:04 -08001238 large_room.analyzer = {"largeroom_50thumb", 0.0, 0.0,
1239 kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +02001240 large_room.config->loss_percent = 0;
1241 large_room.config->queue_delay_ms = 100;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001242 ParamsWithLogging video_params_high;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001243 video_params_high.video[0] = kSimulcastVp8VideoHigh;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001244 ParamsWithLogging video_params_medium;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001245 video_params_medium.video[0] = kSimulcastVp8VideoMedium;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001246 ParamsWithLogging video_params_low;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001247 video_params_low.video[0] = kSimulcastVp8VideoLow;
ilnika014cc52017-03-07 04:21:04 -08001248
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001249 std::vector<VideoStream> streams = {
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001250 VideoQualityTest::DefaultVideoStream(video_params_low, 0),
1251 VideoQualityTest::DefaultVideoStream(video_params_medium, 0),
1252 VideoQualityTest::DefaultVideoStream(video_params_high, 0)};
ilnik98436952017-07-13 00:47:03 -07001253 large_room.call.num_thumbnails = 50;
Sergey Silkin57027362018-05-15 09:12:05 +02001254 large_room.ss[0] = {
1255 streams, 2, 1, 0, InterLayerPredMode::kOn, std::vector<SpatialLayer>(),
1256 false};
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001257 fixture->RunWithAnalyzer(large_room);
ilnika014cc52017-03-07 04:21:04 -08001258}
1259
Mirko Bonadeic84f6612019-01-31 12:20:57 +01001260INSTANTIATE_TEST_SUITE_P(
1261 FullStackTest,
1262 GenericDescriptorTest,
1263 ::testing::Values("WebRTC-GenericDescriptor/Disabled/",
1264 "WebRTC-GenericDescriptor/Enabled/"));
philipeldd8b0d82018-09-27 11:18:10 +02001265
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001266class DualStreamsTest : public ::testing::TestWithParam<int> {};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001267
1268// Disable dual video test on mobile device becuase it's too heavy.
Ilya Nikolaevskiyf08dd9d2018-10-09 17:22:15 +02001269// TODO(bugs.webrtc.org/9840): Investigate why is this test flaky on MAC.
1270#if !defined(WEBRTC_ANDROID) && !defined(WEBRTC_IOS) && !defined(WEBRTC_MAC)
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001271TEST_P(DualStreamsTest,
Ilya Nikolaevskiydda5fdc2019-02-27 10:00:06 +01001272 ModeratelyRestricted_SlidesVp8_2TL_Simulcast_Video_Simulcast_High) {
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001273 test::ScopedFieldTrials field_trial(
Erik Språngb65aa012018-09-24 11:35:19 +02001274 AppendFieldTrials(std::string(kPacerPushBackExperiment) +
1275 std::string(kScreenshareSimulcastExperiment)));
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001276 const int first_stream = GetParam();
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001277 ParamsWithLogging dual_streams;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001278
1279 // Screenshare Settings.
1280 dual_streams.screenshare[first_stream] = {true, false, 10};
Ilya Nikolaevskiyaec663e2019-02-27 12:52:11 +01001281 dual_streams.video[first_stream] = {true, 1850, 1110, 5, 800000, 2500000,
1282 2500000, false, "VP8", 2, 1, 400000,
1283 false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001284
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001285 ParamsWithLogging screenshare_params_high;
Ilya Nikolaevskiydda5fdc2019-02-27 10:00:06 +01001286 screenshare_params_high.video[0] = {
1287 true, 1850, 1110, 60, 600000, 1250000, 1250000, false,
1288 "VP8", 2, 0, 400000, false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001289 VideoQualityTest::Params screenshare_params_low;
Ilya Nikolaevskiydda5fdc2019-02-27 10:00:06 +01001290 screenshare_params_low.video[0] = {true, 1850, 1110, 5, 30000, 200000,
Erik Språng28bb3912018-07-11 16:06:55 +02001291 1000000, false, "VP8", 2, 0, 400000,
1292 false, false, false, ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001293 std::vector<VideoStream> screenhsare_streams = {
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001294 VideoQualityTest::DefaultVideoStream(screenshare_params_low, 0),
1295 VideoQualityTest::DefaultVideoStream(screenshare_params_high, 0)};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001296
Sergey Silkin57027362018-05-15 09:12:05 +02001297 dual_streams.ss[first_stream] = {
1298 screenhsare_streams, 1, 1, 0, InterLayerPredMode::kOn,
1299 std::vector<SpatialLayer>(), false};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001300
1301 // Video settings.
1302 dual_streams.video[1 - first_stream] = kSimulcastVp8VideoHigh;
1303
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001304 ParamsWithLogging video_params_high;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001305 video_params_high.video[0] = kSimulcastVp8VideoHigh;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001306 ParamsWithLogging video_params_medium;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001307 video_params_medium.video[0] = kSimulcastVp8VideoMedium;
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001308 ParamsWithLogging video_params_low;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001309 video_params_low.video[0] = kSimulcastVp8VideoLow;
1310 std::vector<VideoStream> streams = {
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001311 VideoQualityTest::DefaultVideoStream(video_params_low, 0),
1312 VideoQualityTest::DefaultVideoStream(video_params_medium, 0),
1313 VideoQualityTest::DefaultVideoStream(video_params_high, 0)};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001314
1315 dual_streams.ss[1 - first_stream] = {
Sergey Silkin57027362018-05-15 09:12:05 +02001316 streams, 2, 1, 0, InterLayerPredMode::kOn, std::vector<SpatialLayer>(),
1317 false};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001318
1319 // Call settings.
1320 dual_streams.call.send_side_bwe = true;
1321 dual_streams.call.dual_video = true;
Edward Lemur35d2b7e2017-12-27 18:54:47 +01001322 std::string test_label = "dualstreams_moderately_restricted_screenshare_" +
1323 std::to_string(first_stream);
1324 dual_streams.analyzer = {test_label, 0.0, 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +02001325 dual_streams.config->loss_percent = 1;
1326 dual_streams.config->link_capacity_kbps = 7500;
1327 dual_streams.config->queue_length_packets = 30;
1328 dual_streams.config->queue_delay_ms = 100;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001329
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001330 auto fixture = CreateVideoQualityTestFixture();
1331 fixture->RunWithAnalyzer(dual_streams);
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001332}
Ilya Nikolaevskiyf08dd9d2018-10-09 17:22:15 +02001333#endif // !defined(WEBRTC_ANDROID) && !defined(WEBRTC_IOS) &&
1334 // !defined(WEBRTC_MAC)
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001335
1336TEST_P(DualStreamsTest, Conference_Restricted) {
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001337 test::ScopedFieldTrials field_trial(
Ilya Nikolaevskiycb960622018-09-04 09:07:31 +00001338 AppendFieldTrials(std::string(kPacerPushBackExperiment)));
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001339 const int first_stream = GetParam();
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001340 ParamsWithLogging dual_streams;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001341
1342 // Screenshare Settings.
1343 dual_streams.screenshare[first_stream] = {true, false, 10};
1344 dual_streams.video[first_stream] = {true, 1850, 1110, 5, 800000,
1345 2500000, 2500000, false, "VP8", 3,
Niels Möller6aa415e2018-06-07 11:14:13 +02001346 2, 400000, false, false, false,
1347 ""};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001348 // Video settings.
1349 dual_streams.video[1 - first_stream] = {
1350 true, 1280, 720, 30, 150000,
1351 500000, 700000, false, "VP8", 3,
Niels Möller6aa415e2018-06-07 11:14:13 +02001352 2, 400000, false, false, false, "ConferenceMotion_1280_720_50"};
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001353
1354 // Call settings.
1355 dual_streams.call.send_side_bwe = true;
1356 dual_streams.call.dual_video = true;
Edward Lemur35d2b7e2017-12-27 18:54:47 +01001357 std::string test_label = "dualstreams_conference_restricted_screenshare_" +
1358 std::to_string(first_stream);
1359 dual_streams.analyzer = {test_label, 0.0, 0.0, kFullStackTestDurationSecs};
Artem Titovf18b3522018-08-28 16:54:24 +02001360 dual_streams.config->loss_percent = 1;
1361 dual_streams.config->link_capacity_kbps = 5000;
1362 dual_streams.config->queue_length_packets = 30;
1363 dual_streams.config->queue_delay_ms = 100;
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001364
Patrik Höglundb6b29e02018-06-21 16:58:01 +02001365 auto fixture = CreateVideoQualityTestFixture();
1366 fixture->RunWithAnalyzer(dual_streams);
Ilya Nikolaevskiy255d1cd2017-12-21 18:02:59 +01001367}
1368
Mirko Bonadeic84f6612019-01-31 12:20:57 +01001369INSTANTIATE_TEST_SUITE_P(FullStackTest,
1370 DualStreamsTest,
1371 ::testing::Values(0, 1));
ilnika014cc52017-03-07 04:21:04 -08001372
pbos@webrtc.orgaf8d5af2013-07-09 08:02:33 +00001373} // namespace webrtc