| 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 13 matching lines...) Expand all Loading... |
| 24 public: | 24 public: |
| 25 void RunTest(const VideoQualityTest::Params ¶ms) { | 25 void RunTest(const VideoQualityTest::Params ¶ms) { |
| 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 Loading... |
| 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 |
| OLD | NEW |