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

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

Issue 2965233002: Let alr dectector use a budged to detect underuse. (Closed)
Patch Set: Response to comments Created 3 years, 5 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
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-80-90/"; 34 "/1.1,2875,85,20,-20/";
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 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 std::vector<VideoStream> streams = {DefaultVideoStream(video_params_low), 755 std::vector<VideoStream> streams = {DefaultVideoStream(video_params_low),
756 DefaultVideoStream(video_params_medium), 756 DefaultVideoStream(video_params_medium),
757 DefaultVideoStream(video_params_high)}; 757 DefaultVideoStream(video_params_high)};
758 large_room.num_thumbnails = 50; 758 large_room.num_thumbnails = 50;
759 large_room.ss = {streams, 2, 1, 0, std::vector<SpatialLayer>(), false}; 759 large_room.ss = {streams, 2, 1, 0, std::vector<SpatialLayer>(), false};
760 RunTest(large_room); 760 RunTest(large_room);
761 } 761 }
762 762
763 763
764 } // namespace webrtc 764 } // namespace webrtc
OLDNEW
« webrtc/modules/pacing/interval_budget.cc ('K') | « webrtc/modules/pacing/paced_sender.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698