| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 flags::FLAGS_suspend_below_min_bitrate, | 246 flags::FLAGS_suspend_below_min_bitrate, |
| 247 flags::Codec(), | 247 flags::Codec(), |
| 248 flags::NumTemporalLayers(), | 248 flags::NumTemporalLayers(), |
| 249 flags::SelectedTL(), | 249 flags::SelectedTL(), |
| 250 0, // No min transmit bitrate. | 250 0, // No min transmit bitrate. |
| 251 flags::FLAGS_send_side_bwe, | 251 flags::FLAGS_send_side_bwe, |
| 252 flags::FLAGS_use_fec, | 252 flags::FLAGS_use_fec, |
| 253 flags::EncodedFramePath(), | 253 flags::EncodedFramePath(), |
| 254 call_bitrate_config}; | 254 call_bitrate_config}; |
| 255 params.video = {flags::Clip()}; | 255 params.video = {flags::Clip()}; |
| 256 params.screenshare.enabled = false; |
| 256 params.analyzer = {"video", 0.0, 0.0, flags::DurationSecs(), | 257 params.analyzer = {"video", 0.0, 0.0, flags::DurationSecs(), |
| 257 flags::OutputFilename(), flags::GraphTitle()}; | 258 flags::OutputFilename(), flags::GraphTitle()}; |
| 258 params.pipe = pipe_config; | 259 params.pipe = pipe_config; |
| 259 params.logs = flags::FLAGS_logs; | 260 params.logs = flags::FLAGS_logs; |
| 260 params.audio = flags::FLAGS_audio, | 261 params.audio = flags::FLAGS_audio, |
| 261 params.audio_video_sync = flags::FLAGS_audio_video_sync; | 262 params.audio_video_sync = flags::FLAGS_audio_video_sync; |
| 262 | 263 |
| 263 std::vector<std::string> stream_descriptors; | 264 std::vector<std::string> stream_descriptors; |
| 264 stream_descriptors.push_back(flags::Stream0()); | 265 stream_descriptors.push_back(flags::Stream0()); |
| 265 stream_descriptors.push_back(flags::Stream1()); | 266 stream_descriptors.push_back(flags::Stream1()); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 280 } // namespace webrtc | 281 } // namespace webrtc |
| 281 | 282 |
| 282 int main(int argc, char* argv[]) { | 283 int main(int argc, char* argv[]) { |
| 283 ::testing::InitGoogleTest(&argc, argv); | 284 ::testing::InitGoogleTest(&argc, argv); |
| 284 google::ParseCommandLineFlags(&argc, &argv, true); | 285 google::ParseCommandLineFlags(&argc, &argv, true); |
| 285 webrtc::test::InitFieldTrialsFromString( | 286 webrtc::test::InitFieldTrialsFromString( |
| 286 webrtc::flags::FLAGS_force_fieldtrials); | 287 webrtc::flags::FLAGS_force_fieldtrials); |
| 287 webrtc::test::RunTest(webrtc::Loopback); | 288 webrtc::test::RunTest(webrtc::Loopback); |
| 288 return 0; | 289 return 0; |
| 289 } | 290 } |
| OLD | NEW |