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

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

Issue 2684983004: Added handling of 'agc_compression_gain' flag in audioproc_f. (Closed)
Patch Set: Added option for experimental_agc Created 3 years, 10 months 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/audio_processing_simulator.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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 rtc::Optional<bool> use_ie; 57 rtc::Optional<bool> use_ie;
58 rtc::Optional<bool> use_vad; 58 rtc::Optional<bool> use_vad;
59 rtc::Optional<bool> use_le; 59 rtc::Optional<bool> use_le;
60 rtc::Optional<bool> use_all; 60 rtc::Optional<bool> use_all;
61 rtc::Optional<int> aec_suppression_level; 61 rtc::Optional<int> aec_suppression_level;
62 rtc::Optional<bool> use_delay_agnostic; 62 rtc::Optional<bool> use_delay_agnostic;
63 rtc::Optional<bool> use_extended_filter; 63 rtc::Optional<bool> use_extended_filter;
64 rtc::Optional<bool> use_drift_compensation; 64 rtc::Optional<bool> use_drift_compensation;
65 rtc::Optional<bool> use_aec3; 65 rtc::Optional<bool> use_aec3;
66 rtc::Optional<bool> use_lc; 66 rtc::Optional<bool> use_lc;
67 rtc::Optional<bool> use_experimental_agc;
67 rtc::Optional<int> aecm_routing_mode; 68 rtc::Optional<int> aecm_routing_mode;
68 rtc::Optional<bool> use_aecm_comfort_noise; 69 rtc::Optional<bool> use_aecm_comfort_noise;
69 rtc::Optional<int> agc_mode; 70 rtc::Optional<int> agc_mode;
70 rtc::Optional<int> agc_target_level; 71 rtc::Optional<int> agc_target_level;
71 rtc::Optional<bool> use_agc_limiter; 72 rtc::Optional<bool> use_agc_limiter;
72 rtc::Optional<int> agc_compression_gain; 73 rtc::Optional<int> agc_compression_gain;
73 rtc::Optional<int> vad_likelihood; 74 rtc::Optional<int> vad_likelihood;
74 rtc::Optional<int> ns_level; 75 rtc::Optional<int> ns_level;
75 rtc::Optional<bool> use_refined_adaptive_filter; 76 rtc::Optional<bool> use_refined_adaptive_filter;
76 bool report_performance = false; 77 bool report_performance = false;
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 TickIntervalStats proc_time_; 176 TickIntervalStats proc_time_;
176 std::ofstream residual_echo_likelihood_graph_writer_; 177 std::ofstream residual_echo_likelihood_graph_writer_;
177 178
178 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); 179 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator);
179 }; 180 };
180 181
181 } // namespace test 182 } // namespace test
182 } // namespace webrtc 183 } // namespace webrtc
183 184
184 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ 185 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/audio_processing_simulator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698