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

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

Issue 2768473002: Adding audio DTX to video loopback test. (Closed)
Patch Set: small fix Created 3 years, 9 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 int selected_tl; 48 int selected_tl;
49 int min_transmit_bps; 49 int min_transmit_bps;
50 bool ulpfec; 50 bool ulpfec;
51 bool flexfec; 51 bool flexfec;
52 std::string encoded_frame_base_path; 52 std::string encoded_frame_base_path;
53 std::string clip_name; 53 std::string clip_name;
54 } video; 54 } video;
55 struct Audio { 55 struct Audio {
56 bool enabled; 56 bool enabled;
57 bool sync_video; 57 bool sync_video;
58 bool dtx;
58 } audio; 59 } audio;
59 struct Screenshare { 60 struct Screenshare {
60 bool enabled; 61 bool enabled;
61 int32_t slide_change_interval; 62 int32_t slide_change_interval;
62 int32_t scroll_duration; 63 int32_t scroll_duration;
63 } screenshare; 64 } screenshare;
64 struct Analyzer { 65 struct Analyzer {
65 std::string test_label; 66 std::string test_label;
66 double avg_psnr_threshold; // (*) 67 double avg_psnr_threshold; // (*)
67 double avg_ssim_threshold; // (*) 68 double avg_ssim_threshold; // (*)
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 int send_logs_; 146 int send_logs_;
146 147
147 VideoSendStream::DegradationPreference degradation_preference_ = 148 VideoSendStream::DegradationPreference degradation_preference_ =
148 VideoSendStream::DegradationPreference::kBalanced; 149 VideoSendStream::DegradationPreference::kBalanced;
149 Params params_; 150 Params params_;
150 }; 151 };
151 152
152 } // namespace webrtc 153 } // namespace webrtc
153 154
154 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ 155 #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