| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 rtc::Optional<int> ns_level; | 73 rtc::Optional<int> ns_level; |
| 74 rtc::Optional<bool> use_refined_adaptive_filter; | 74 rtc::Optional<bool> use_refined_adaptive_filter; |
| 75 bool report_performance = false; | 75 bool report_performance = false; |
| 76 bool report_bitexactness = false; | 76 bool report_bitexactness = false; |
| 77 bool use_verbose_logging = false; | 77 bool use_verbose_logging = false; |
| 78 bool discard_all_settings_in_aecdump = true; | 78 bool discard_all_settings_in_aecdump = true; |
| 79 rtc::Optional<std::string> aec_dump_input_filename; | 79 rtc::Optional<std::string> aec_dump_input_filename; |
| 80 rtc::Optional<std::string> aec_dump_output_filename; | 80 rtc::Optional<std::string> aec_dump_output_filename; |
| 81 bool fixed_interface = false; | 81 bool fixed_interface = false; |
| 82 bool store_intermediate_output = false; | 82 bool store_intermediate_output = false; |
| 83 rtc::Optional<std::string> custom_call_order_filename; |
| 83 }; | 84 }; |
| 84 | 85 |
| 85 // Holds a few statistics about a series of TickIntervals. | 86 // Holds a few statistics about a series of TickIntervals. |
| 86 struct TickIntervalStats { | 87 struct TickIntervalStats { |
| 87 TickIntervalStats() : min(std::numeric_limits<int64_t>::max()) {} | 88 TickIntervalStats() : min(std::numeric_limits<int64_t>::max()) {} |
| 88 int64_t sum; | 89 int64_t sum; |
| 89 int64_t max; | 90 int64_t max; |
| 90 int64_t min; | 91 int64_t min; |
| 91 }; | 92 }; |
| 92 | 93 |
| (...skipping 80 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 |