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 206 matching lines...) Loading... |
217 pipe_config.queue_delay_ms = flags::AvgPropagationDelayMs(); | 217 pipe_config.queue_delay_ms = flags::AvgPropagationDelayMs(); |
218 pipe_config.delay_standard_deviation_ms = flags::StdPropagationDelayMs(); | 218 pipe_config.delay_standard_deviation_ms = flags::StdPropagationDelayMs(); |
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 params.common = {flags::Width(), flags::Height(), flags::Fps(), | 227 params.common = {flags::FLAGS_send_side_bwe, call_bitrate_config}; |
228 flags::MinBitrateKbps() * 1000, flags::TargetBitrateKbps() * 1000, | 228 params.video = {true, |
229 flags::MaxBitrateKbps() * 1000, false, flags::Codec(), | 229 flags::Width(), |
230 flags::NumTemporalLayers(), flags::SelectedTL(), | 230 flags::Height(), |
231 flags::MinTransmitBitrateKbps() * 1000, flags::FLAGS_send_side_bwe, | 231 flags::Fps(), |
232 false, call_bitrate_config}; | 232 flags::MinBitrateKbps() * 1000, |
| 233 flags::TargetBitrateKbps() * 1000, |
| 234 flags::MaxBitrateKbps() * 1000, |
| 235 false, |
| 236 flags::Codec(), |
| 237 flags::NumTemporalLayers(), |
| 238 flags::SelectedTL(), |
| 239 flags::MinTransmitBitrateKbps() * 1000, |
| 240 false, |
| 241 ""}; |
| 242 params.audio = {false, false}; |
233 params.screenshare = {true, flags::SlideChangeInterval(), | 243 params.screenshare = {true, flags::SlideChangeInterval(), |
234 flags::ScrollDuration()}; | 244 flags::ScrollDuration()}; |
235 params.analyzer = {"screenshare", 0.0, 0.0, flags::DurationSecs(), | 245 params.analyzer = {"screenshare", 0.0, 0.0, flags::DurationSecs(), |
236 flags::OutputFilename(), flags::GraphTitle()}; | 246 flags::OutputFilename(), flags::GraphTitle()}; |
237 params.pipe = pipe_config; | 247 params.pipe = pipe_config; |
238 params.logs = flags::FLAGS_logs; | 248 params.logs = flags::FLAGS_logs; |
239 params.audio = false; | |
240 params.audio_video_sync = false; | |
241 | 249 |
242 std::vector<std::string> stream_descriptors; | 250 std::vector<std::string> stream_descriptors; |
243 stream_descriptors.push_back(flags::Stream0()); | 251 stream_descriptors.push_back(flags::Stream0()); |
244 stream_descriptors.push_back(flags::Stream1()); | 252 stream_descriptors.push_back(flags::Stream1()); |
245 std::vector<std::string> SL_descriptors; | 253 std::vector<std::string> SL_descriptors; |
246 SL_descriptors.push_back(flags::SL0()); | 254 SL_descriptors.push_back(flags::SL0()); |
247 SL_descriptors.push_back(flags::SL1()); | 255 SL_descriptors.push_back(flags::SL1()); |
248 VideoQualityTest::FillScalabilitySettings( | 256 VideoQualityTest::FillScalabilitySettings( |
249 ¶ms, stream_descriptors, flags::SelectedStream(), | 257 ¶ms, stream_descriptors, flags::SelectedStream(), |
250 flags::NumSpatialLayers(), flags::SelectedSL(), SL_descriptors); | 258 flags::NumSpatialLayers(), flags::SelectedSL(), SL_descriptors); |
251 | 259 |
252 VideoQualityTest test; | 260 VideoQualityTest test; |
253 if (flags::DurationSecs()) { | 261 if (flags::DurationSecs()) { |
254 test.RunWithAnalyzer(params); | 262 test.RunWithAnalyzer(params); |
255 } else { | 263 } else { |
256 test.RunWithRenderers(params); | 264 test.RunWithRenderers(params); |
257 } | 265 } |
258 } | 266 } |
259 } // namespace webrtc | 267 } // namespace webrtc |
260 | 268 |
261 int main(int argc, char* argv[]) { | 269 int main(int argc, char* argv[]) { |
262 ::testing::InitGoogleTest(&argc, argv); | 270 ::testing::InitGoogleTest(&argc, argv); |
263 google::ParseCommandLineFlags(&argc, &argv, true); | 271 google::ParseCommandLineFlags(&argc, &argv, true); |
264 webrtc::test::InitFieldTrialsFromString( | 272 webrtc::test::InitFieldTrialsFromString( |
265 webrtc::flags::FLAGS_force_fieldtrials); | 273 webrtc::flags::FLAGS_force_fieldtrials); |
266 webrtc::test::RunTest(webrtc::Loopback); | 274 webrtc::test::RunTest(webrtc::Loopback); |
267 return 0; | 275 return 0; |
268 } | 276 } |
OLD | NEW |