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 28 matching lines...) Expand all Loading... |
39 rtc::Optional<int> reverse_output_sample_rate_hz; | 39 rtc::Optional<int> reverse_output_sample_rate_hz; |
40 rtc::Optional<int> reverse_output_num_channels; | 40 rtc::Optional<int> reverse_output_num_channels; |
41 rtc::Optional<std::string> microphone_positions; | 41 rtc::Optional<std::string> microphone_positions; |
42 int target_angle_degrees = 90; | 42 int target_angle_degrees = 90; |
43 rtc::Optional<std::string> output_filename; | 43 rtc::Optional<std::string> output_filename; |
44 rtc::Optional<std::string> reverse_output_filename; | 44 rtc::Optional<std::string> reverse_output_filename; |
45 rtc::Optional<std::string> input_filename; | 45 rtc::Optional<std::string> input_filename; |
46 rtc::Optional<std::string> reverse_input_filename; | 46 rtc::Optional<std::string> reverse_input_filename; |
47 rtc::Optional<bool> use_aec; | 47 rtc::Optional<bool> use_aec; |
48 rtc::Optional<bool> use_aecm; | 48 rtc::Optional<bool> use_aecm; |
49 rtc::Optional<bool> use_red; // Residual Echo Detector. | 49 rtc::Optional<bool> use_ed; // Residual Echo Detector. |
50 rtc::Optional<std::string> red_graph_output_filename; | 50 rtc::Optional<std::string> ed_graph_output_filename; |
51 rtc::Optional<bool> use_agc; | 51 rtc::Optional<bool> use_agc; |
52 rtc::Optional<bool> use_hpf; | 52 rtc::Optional<bool> use_hpf; |
53 rtc::Optional<bool> use_ns; | 53 rtc::Optional<bool> use_ns; |
54 rtc::Optional<bool> use_ts; | 54 rtc::Optional<bool> use_ts; |
55 rtc::Optional<bool> use_bf; | 55 rtc::Optional<bool> use_bf; |
56 rtc::Optional<bool> use_ie; | 56 rtc::Optional<bool> use_ie; |
57 rtc::Optional<bool> use_vad; | 57 rtc::Optional<bool> use_vad; |
58 rtc::Optional<bool> use_le; | 58 rtc::Optional<bool> use_le; |
59 rtc::Optional<bool> use_all; | 59 rtc::Optional<bool> use_all; |
60 rtc::Optional<int> aec_suppression_level; | 60 rtc::Optional<int> aec_suppression_level; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 TickIntervalStats proc_time_; | 173 TickIntervalStats proc_time_; |
174 std::ofstream residual_echo_likelihood_graph_writer_; | 174 std::ofstream residual_echo_likelihood_graph_writer_; |
175 | 175 |
176 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); | 176 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); |
177 }; | 177 }; |
178 | 178 |
179 } // namespace test | 179 } // namespace test |
180 } // namespace webrtc | 180 } // namespace webrtc |
181 | 181 |
182 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ | 182 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ |
OLD | NEW |