| 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 26 matching lines...) Expand all Loading... |
| 37 rtc::Optional<int> output_sample_rate_hz; | 37 rtc::Optional<int> output_sample_rate_hz; |
| 38 rtc::Optional<int> output_num_channels; | 38 rtc::Optional<int> output_num_channels; |
| 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<std::string> artificial_nearend_filename; |
| 47 rtc::Optional<bool> use_aec; | 48 rtc::Optional<bool> use_aec; |
| 48 rtc::Optional<bool> use_aecm; | 49 rtc::Optional<bool> use_aecm; |
| 49 rtc::Optional<bool> use_ed; // Residual Echo Detector. | 50 rtc::Optional<bool> use_ed; // Residual Echo Detector. |
| 50 rtc::Optional<std::string> ed_graph_output_filename; | 51 rtc::Optional<std::string> ed_graph_output_filename; |
| 51 rtc::Optional<bool> use_agc; | 52 rtc::Optional<bool> use_agc; |
| 52 rtc::Optional<bool> use_hpf; | 53 rtc::Optional<bool> use_hpf; |
| 53 rtc::Optional<bool> use_ns; | 54 rtc::Optional<bool> use_ns; |
| 54 rtc::Optional<bool> use_ts; | 55 rtc::Optional<bool> use_ts; |
| 55 rtc::Optional<bool> use_bf; | 56 rtc::Optional<bool> use_bf; |
| 56 rtc::Optional<bool> use_ie; | 57 rtc::Optional<bool> use_ie; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 TickIntervalStats proc_time_; | 174 TickIntervalStats proc_time_; |
| 174 std::ofstream residual_echo_likelihood_graph_writer_; | 175 std::ofstream residual_echo_likelihood_graph_writer_; |
| 175 | 176 |
| 176 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); | 177 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); |
| 177 }; | 178 }; |
| 178 | 179 |
| 179 } // namespace test | 180 } // namespace test |
| 180 } // namespace webrtc | 181 } // namespace webrtc |
| 181 | 182 |
| 182 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ | 183 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ |
| OLD | NEW |