| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 rtc::Optional<bool> use_ie; | 57 rtc::Optional<bool> use_ie; |
| 58 rtc::Optional<bool> use_vad; | 58 rtc::Optional<bool> use_vad; |
| 59 rtc::Optional<bool> use_le; | 59 rtc::Optional<bool> use_le; |
| 60 rtc::Optional<bool> use_all; | 60 rtc::Optional<bool> use_all; |
| 61 rtc::Optional<int> aec_suppression_level; | 61 rtc::Optional<int> aec_suppression_level; |
| 62 rtc::Optional<bool> use_delay_agnostic; | 62 rtc::Optional<bool> use_delay_agnostic; |
| 63 rtc::Optional<bool> use_extended_filter; | 63 rtc::Optional<bool> use_extended_filter; |
| 64 rtc::Optional<bool> use_drift_compensation; | 64 rtc::Optional<bool> use_drift_compensation; |
| 65 rtc::Optional<bool> use_aec3; | 65 rtc::Optional<bool> use_aec3; |
| 66 rtc::Optional<bool> use_lc; | 66 rtc::Optional<bool> use_lc; |
| 67 rtc::Optional<bool> use_experimental_agc; |
| 67 rtc::Optional<int> aecm_routing_mode; | 68 rtc::Optional<int> aecm_routing_mode; |
| 68 rtc::Optional<bool> use_aecm_comfort_noise; | 69 rtc::Optional<bool> use_aecm_comfort_noise; |
| 69 rtc::Optional<int> agc_mode; | 70 rtc::Optional<int> agc_mode; |
| 70 rtc::Optional<int> agc_target_level; | 71 rtc::Optional<int> agc_target_level; |
| 71 rtc::Optional<bool> use_agc_limiter; | 72 rtc::Optional<bool> use_agc_limiter; |
| 72 rtc::Optional<int> agc_compression_gain; | 73 rtc::Optional<int> agc_compression_gain; |
| 73 rtc::Optional<int> vad_likelihood; | 74 rtc::Optional<int> vad_likelihood; |
| 74 rtc::Optional<int> ns_level; | 75 rtc::Optional<int> ns_level; |
| 75 rtc::Optional<bool> use_refined_adaptive_filter; | 76 rtc::Optional<bool> use_refined_adaptive_filter; |
| 76 bool report_performance = false; | 77 bool report_performance = false; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 TickIntervalStats proc_time_; | 176 TickIntervalStats proc_time_; |
| 176 std::ofstream residual_echo_likelihood_graph_writer_; | 177 std::ofstream residual_echo_likelihood_graph_writer_; |
| 177 | 178 |
| 178 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); | 179 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); |
| 179 }; | 180 }; |
| 180 | 181 |
| 181 } // namespace test | 182 } // namespace test |
| 182 } // namespace webrtc | 183 } // namespace webrtc |
| 183 | 184 |
| 184 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ | 185 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ |
| OLD | NEW |