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

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

Issue 2814023003: Add command-line param to screenshare_loopback to specify a list of slides (Closed)
Patch Set: Use tokenize() from base to split string by comma instead of doing it manually Created 3 years, 8 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
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 } video; 55 } video;
56 struct Audio { 56 struct Audio {
57 bool enabled; 57 bool enabled;
58 bool sync_video; 58 bool sync_video;
59 bool dtx; 59 bool dtx;
60 } audio; 60 } audio;
61 struct Screenshare { 61 struct Screenshare {
62 bool enabled; 62 bool enabled;
63 int32_t slide_change_interval; 63 int32_t slide_change_interval;
64 int32_t scroll_duration; 64 int32_t scroll_duration;
65 std::vector<std::string> slides;
65 } screenshare; 66 } screenshare;
66 struct Analyzer { 67 struct Analyzer {
67 std::string test_label; 68 std::string test_label;
68 double avg_psnr_threshold; // (*) 69 double avg_psnr_threshold; // (*)
69 double avg_ssim_threshold; // (*) 70 double avg_ssim_threshold; // (*)
70 int test_durations_secs; 71 int test_durations_secs;
71 std::string graph_data_output_filename; 72 std::string graph_data_output_filename;
72 std::string graph_title; 73 std::string graph_title;
73 } analyzer; 74 } analyzer;
74 FakeNetworkPipe::Config pipe; 75 FakeNetworkPipe::Config pipe;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 int send_logs_; 150 int send_logs_;
150 151
151 VideoSendStream::DegradationPreference degradation_preference_ = 152 VideoSendStream::DegradationPreference degradation_preference_ =
152 VideoSendStream::DegradationPreference::kMaintainFramerate; 153 VideoSendStream::DegradationPreference::kMaintainFramerate;
153 Params params_; 154 Params params_;
154 }; 155 };
155 156
156 } // namespace webrtc 157 } // namespace webrtc
157 158
158 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ 159 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698