| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 | 10 |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 pipe_config.allow_reordering = flags::FLAGS_allow_reordering; | 219 pipe_config.allow_reordering = flags::FLAGS_allow_reordering; |
| 220 | 220 |
| 221 Call::Config::BitrateConfig call_bitrate_config; | 221 Call::Config::BitrateConfig call_bitrate_config; |
| 222 call_bitrate_config.min_bitrate_bps = flags::MinBitrateKbps() * 1000; | 222 call_bitrate_config.min_bitrate_bps = flags::MinBitrateKbps() * 1000; |
| 223 call_bitrate_config.start_bitrate_bps = flags::StartBitrateKbps() * 1000; | 223 call_bitrate_config.start_bitrate_bps = flags::StartBitrateKbps() * 1000; |
| 224 call_bitrate_config.max_bitrate_bps = flags::MaxBitrateKbps() * 1000; | 224 call_bitrate_config.max_bitrate_bps = flags::MaxBitrateKbps() * 1000; |
| 225 | 225 |
| 226 VideoQualityTest::Params params{ | 226 VideoQualityTest::Params params{ |
| 227 {flags::Width(), flags::Height(), flags::Fps(), | 227 {flags::Width(), flags::Height(), flags::Fps(), |
| 228 flags::MinBitrateKbps() * 1000, flags::TargetBitrateKbps() * 1000, | 228 flags::MinBitrateKbps() * 1000, flags::TargetBitrateKbps() * 1000, |
| 229 flags::MaxBitrateKbps() * 1000, flags::Codec(), | 229 flags::MaxBitrateKbps() * 1000, false, flags::Codec(), |
| 230 flags::NumTemporalLayers(), flags::SelectedTL(), | 230 flags::NumTemporalLayers(), flags::SelectedTL(), |
| 231 flags::MinTransmitBitrateKbps() * 1000, call_bitrate_config, | 231 flags::MinTransmitBitrateKbps() * 1000, call_bitrate_config, |
| 232 flags::FLAGS_send_side_bwe}, | 232 flags::FLAGS_send_side_bwe}, |
| 233 {}, // Video specific. | 233 {}, // Video specific. |
| 234 {true, flags::SlideChangeInterval(), flags::ScrollDuration()}, | 234 {true, flags::SlideChangeInterval(), flags::ScrollDuration()}, |
| 235 {"screenshare", 0.0, 0.0, flags::DurationSecs(), flags::OutputFilename(), | 235 {"screenshare", 0.0, 0.0, flags::DurationSecs(), flags::OutputFilename(), |
| 236 flags::GraphTitle()}, | 236 flags::GraphTitle()}, |
| 237 pipe_config, | 237 pipe_config, |
| 238 flags::FLAGS_logs}; | 238 flags::FLAGS_logs}; |
| 239 | 239 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 257 } // namespace webrtc | 257 } // namespace webrtc |
| 258 | 258 |
| 259 int main(int argc, char* argv[]) { | 259 int main(int argc, char* argv[]) { |
| 260 ::testing::InitGoogleTest(&argc, argv); | 260 ::testing::InitGoogleTest(&argc, argv); |
| 261 google::ParseCommandLineFlags(&argc, &argv, true); | 261 google::ParseCommandLineFlags(&argc, &argv, true); |
| 262 webrtc::test::InitFieldTrialsFromString( | 262 webrtc::test::InitFieldTrialsFromString( |
| 263 webrtc::flags::FLAGS_force_fieldtrials); | 263 webrtc::flags::FLAGS_force_fieldtrials); |
| 264 webrtc::test::RunTest(webrtc::Loopback); | 264 webrtc::test::RunTest(webrtc::Loopback); |
| 265 return 0; | 265 return 0; |
| 266 } | 266 } |
| OLD | NEW |