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

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

Issue 3007863003: Fix alr tests config (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 #include <stdio.h> 10 #include <stdio.h>
(...skipping 13 matching lines...) Expand all
24 public: 24 public:
25 void RunTest(const VideoQualityTest::Params &params) { 25 void RunTest(const VideoQualityTest::Params &params) {
26 RunWithAnalyzer(params); 26 RunWithAnalyzer(params);
27 } 27 }
28 28
29 protected: 29 protected:
30 const std::string kScreenshareSimulcastExperiment = 30 const std::string kScreenshareSimulcastExperiment =
31 "WebRTC-SimulcastScreenshare/Enabled/"; 31 "WebRTC-SimulcastScreenshare/Enabled/";
32 const std::string kAlrProbingExperiment = 32 const std::string kAlrProbingExperiment =
33 std::string(AlrDetector::kScreenshareProbingBweExperimentName) + 33 std::string(AlrDetector::kScreenshareProbingBweExperimentName) +
34 "/1.1,2875,85,20,-20/"; 34 "/1.1,2875,85,20,-20,0/";
35 }; 35 };
36 36
37 // VideoQualityTest::Params params = { 37 // VideoQualityTest::Params params = {
38 // { ... }, // Common. 38 // { ... }, // Common.
39 // { ... }, // Video-specific settings. 39 // { ... }, // Video-specific settings.
40 // { ... }, // Screenshare-specific settings. 40 // { ... }, // Screenshare-specific settings.
41 // { ... }, // Analyzer settings. 41 // { ... }, // Analyzer settings.
42 // pipe, // FakeNetworkPipe::Config 42 // pipe, // FakeNetworkPipe::Config
43 // { ... }, // Spatial scalability. 43 // { ... }, // Spatial scalability.
44 // logs // bool 44 // logs // bool
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 std::vector<VideoStream> streams = {DefaultVideoStream(video_params_low), 748 std::vector<VideoStream> streams = {DefaultVideoStream(video_params_low),
749 DefaultVideoStream(video_params_medium), 749 DefaultVideoStream(video_params_medium),
750 DefaultVideoStream(video_params_high)}; 750 DefaultVideoStream(video_params_high)};
751 large_room.call.num_thumbnails = 50; 751 large_room.call.num_thumbnails = 50;
752 large_room.ss = {streams, 2, 1, 0, std::vector<SpatialLayer>(), false}; 752 large_room.ss = {streams, 2, 1, 0, std::vector<SpatialLayer>(), false};
753 RunTest(large_room); 753 RunTest(large_room);
754 } 754 }
755 755
756 756
757 } // namespace webrtc 757 } // namespace webrtc
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698