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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 rtc::Optional<bool> use_bf; | 49 rtc::Optional<bool> use_bf; |
50 rtc::Optional<bool> use_ie; | 50 rtc::Optional<bool> use_ie; |
51 rtc::Optional<bool> use_vad; | 51 rtc::Optional<bool> use_vad; |
52 rtc::Optional<bool> use_le; | 52 rtc::Optional<bool> use_le; |
53 rtc::Optional<bool> use_all; | 53 rtc::Optional<bool> use_all; |
54 rtc::Optional<int> aec_suppression_level; | 54 rtc::Optional<int> aec_suppression_level; |
55 rtc::Optional<bool> use_delay_agnostic; | 55 rtc::Optional<bool> use_delay_agnostic; |
56 rtc::Optional<bool> use_extended_filter; | 56 rtc::Optional<bool> use_extended_filter; |
57 rtc::Optional<bool> use_drift_compensation; | 57 rtc::Optional<bool> use_drift_compensation; |
58 rtc::Optional<bool> use_aec3; | 58 rtc::Optional<bool> use_aec3; |
| 59 rtc::Optional<bool> use_lc; |
59 rtc::Optional<int> aecm_routing_mode; | 60 rtc::Optional<int> aecm_routing_mode; |
60 rtc::Optional<bool> use_aecm_comfort_noise; | 61 rtc::Optional<bool> use_aecm_comfort_noise; |
61 rtc::Optional<int> agc_mode; | 62 rtc::Optional<int> agc_mode; |
62 rtc::Optional<int> agc_target_level; | 63 rtc::Optional<int> agc_target_level; |
63 rtc::Optional<bool> use_agc_limiter; | 64 rtc::Optional<bool> use_agc_limiter; |
64 rtc::Optional<int> agc_compression_gain; | 65 rtc::Optional<int> agc_compression_gain; |
65 rtc::Optional<int> vad_likelihood; | 66 rtc::Optional<int> vad_likelihood; |
66 rtc::Optional<int> ns_level; | 67 rtc::Optional<int> ns_level; |
67 rtc::Optional<bool> use_refined_adaptive_filter; | 68 rtc::Optional<bool> use_refined_adaptive_filter; |
68 bool report_performance = false; | 69 bool report_performance = false; |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 std::unique_ptr<ChannelBufferWavWriter> reverse_buffer_writer_; | 167 std::unique_ptr<ChannelBufferWavWriter> reverse_buffer_writer_; |
167 TickIntervalStats proc_time_; | 168 TickIntervalStats proc_time_; |
168 | 169 |
169 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); | 170 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); |
170 }; | 171 }; |
171 | 172 |
172 } // namespace test | 173 } // namespace test |
173 } // namespace webrtc | 174 } // namespace webrtc |
174 | 175 |
175 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ | 176 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ |
OLD | NEW |