| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 rtc::Optional<bool> use_drift_compensation; | 66 rtc::Optional<bool> use_drift_compensation; |
| 67 rtc::Optional<bool> use_aec3; | 67 rtc::Optional<bool> use_aec3; |
| 68 rtc::Optional<bool> use_lc; | 68 rtc::Optional<bool> use_lc; |
| 69 rtc::Optional<bool> use_experimental_agc; | 69 rtc::Optional<bool> use_experimental_agc; |
| 70 rtc::Optional<int> aecm_routing_mode; | 70 rtc::Optional<int> aecm_routing_mode; |
| 71 rtc::Optional<bool> use_aecm_comfort_noise; | 71 rtc::Optional<bool> use_aecm_comfort_noise; |
| 72 rtc::Optional<int> agc_mode; | 72 rtc::Optional<int> agc_mode; |
| 73 rtc::Optional<int> agc_target_level; | 73 rtc::Optional<int> agc_target_level; |
| 74 rtc::Optional<bool> use_agc_limiter; | 74 rtc::Optional<bool> use_agc_limiter; |
| 75 rtc::Optional<int> agc_compression_gain; | 75 rtc::Optional<int> agc_compression_gain; |
| 76 rtc::Optional<double> agc2_fixed_gain_db; |
| 76 rtc::Optional<int> vad_likelihood; | 77 rtc::Optional<int> vad_likelihood; |
| 77 rtc::Optional<int> ns_level; | 78 rtc::Optional<int> ns_level; |
| 78 rtc::Optional<bool> use_refined_adaptive_filter; | 79 rtc::Optional<bool> use_refined_adaptive_filter; |
| 79 bool report_performance = false; | 80 bool report_performance = false; |
| 80 bool report_bitexactness = false; | 81 bool report_bitexactness = false; |
| 81 bool use_verbose_logging = false; | 82 bool use_verbose_logging = false; |
| 82 bool discard_all_settings_in_aecdump = true; | 83 bool discard_all_settings_in_aecdump = true; |
| 83 rtc::Optional<std::string> aec_dump_input_filename; | 84 rtc::Optional<std::string> aec_dump_input_filename; |
| 84 rtc::Optional<std::string> aec_dump_output_filename; | 85 rtc::Optional<std::string> aec_dump_output_filename; |
| 85 bool fixed_interface = false; | 86 bool fixed_interface = false; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 | 181 |
| 181 rtc::TaskQueue worker_queue_; | 182 rtc::TaskQueue worker_queue_; |
| 182 | 183 |
| 183 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); | 184 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); |
| 184 }; | 185 }; |
| 185 | 186 |
| 186 } // namespace test | 187 } // namespace test |
| 187 } // namespace webrtc | 188 } // namespace webrtc |
| 188 | 189 |
| 189 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ | 190 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ |
| OLD | NEW |