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

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

Issue 2413523003: Set screenshare.enabled parameter to false when running video_loopback test. (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698