Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Side by Side Diff: webrtc/modules/audio_processing/test/audio_processing_simulator.h

Issue 2561843003: Added functionality for simulating custom orders of the stream API calls in audioproc_f (Closed)
Patch Set: Changes in response to reviewer comments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/audioproc_float.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/audioproc_float.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698