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 #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 Loading... |
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 Loading... |
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_ |
OLD | NEW |