| 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 28 matching lines...) Expand all Loading... |
| 39 size_t height; | 39 size_t height; |
| 40 int32_t fps; | 40 int32_t fps; |
| 41 int min_bitrate_bps; | 41 int min_bitrate_bps; |
| 42 int target_bitrate_bps; | 42 int target_bitrate_bps; |
| 43 int max_bitrate_bps; | 43 int max_bitrate_bps; |
| 44 bool suspend_below_min_bitrate; | 44 bool suspend_below_min_bitrate; |
| 45 std::string codec; | 45 std::string codec; |
| 46 int num_temporal_layers; | 46 int num_temporal_layers; |
| 47 int selected_tl; | 47 int selected_tl; |
| 48 int min_transmit_bps; | 48 int min_transmit_bps; |
| 49 bool fec; | 49 bool ulpfec; |
| 50 bool flexfec; |
| 50 std::string encoded_frame_base_path; | 51 std::string encoded_frame_base_path; |
| 51 std::string clip_name; | 52 std::string clip_name; |
| 52 } video; | 53 } video; |
| 53 struct { | 54 struct { |
| 54 bool enabled; | 55 bool enabled; |
| 55 bool sync_video; | 56 bool sync_video; |
| 56 } audio; | 57 } audio; |
| 57 struct { | 58 struct { |
| 58 bool enabled; | 59 bool enabled; |
| 59 int32_t slide_change_interval; | 60 int32_t slide_change_interval; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 130 |
| 130 int receive_logs_; | 131 int receive_logs_; |
| 131 int send_logs_; | 132 int send_logs_; |
| 132 | 133 |
| 133 Params params_; | 134 Params params_; |
| 134 }; | 135 }; |
| 135 | 136 |
| 136 } // namespace webrtc | 137 } // namespace webrtc |
| 137 | 138 |
| 138 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ | 139 #endif // WEBRTC_VIDEO_VIDEO_QUALITY_TEST_H_ |
| OLD | NEW |