| 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 23 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |