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

Side by Side Diff: webrtc/video/video_quality_test.h

Issue 1937983002: Added flag for FEC for video_loopback. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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 | « webrtc/video/video_loopback.cc ('k') | webrtc/video/video_quality_test.cc » ('j') | 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 #ifndef WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ 10 #ifndef WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_
(...skipping 23 matching lines...) Expand all
34 int min_bitrate_bps; 34 int min_bitrate_bps;
35 int target_bitrate_bps; 35 int target_bitrate_bps;
36 int max_bitrate_bps; 36 int max_bitrate_bps;
37 std::string codec; 37 std::string codec;
38 int num_temporal_layers; 38 int num_temporal_layers;
39 int selected_tl; 39 int selected_tl;
40 int min_transmit_bps; 40 int min_transmit_bps;
41 41
42 Call::Config::BitrateConfig call_bitrate_config; 42 Call::Config::BitrateConfig call_bitrate_config;
43 bool send_side_bwe; 43 bool send_side_bwe;
44 bool fec;
44 } common; 45 } common;
45 struct { // Video-specific settings. 46 struct { // Video-specific settings.
46 std::string clip_name; 47 std::string clip_name;
47 } video; 48 } video;
48 struct { // Screenshare-specific settings. 49 struct { // Screenshare-specific settings.
49 bool enabled; 50 bool enabled;
50 int32_t slide_change_interval; 51 int32_t slide_change_interval;
51 int32_t scroll_duration; 52 int32_t scroll_duration;
52 } screenshare; 53 } screenshare;
53 struct { // Analyzer settings. 54 struct { // Analyzer settings.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 std::unique_ptr<VideoEncoder> encoder_; 111 std::unique_ptr<VideoEncoder> encoder_;
111 VideoCodecUnion codec_settings_; 112 VideoCodecUnion codec_settings_;
112 Clock* const clock_; 113 Clock* const clock_;
113 114
114 Params params_; 115 Params params_;
115 }; 116 };
116 117
117 } // namespace webrtc 118 } // namespace webrtc
118 119
119 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ 120 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_
OLDNEW
« no previous file with comments | « webrtc/video/video_loopback.cc ('k') | webrtc/video/video_quality_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698