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