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

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

Issue 2090583002: New module for the adaptive level controlling functionality in the audio processing module (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Temporarily deactivated the level controller until the CL with the proper tuning has been landed Created 4 years, 5 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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 rtc::Optional<bool> use_bf; 49 rtc::Optional<bool> use_bf;
50 rtc::Optional<bool> use_ie; 50 rtc::Optional<bool> use_ie;
51 rtc::Optional<bool> use_vad; 51 rtc::Optional<bool> use_vad;
52 rtc::Optional<bool> use_le; 52 rtc::Optional<bool> use_le;
53 rtc::Optional<bool> use_all; 53 rtc::Optional<bool> use_all;
54 rtc::Optional<int> aec_suppression_level; 54 rtc::Optional<int> aec_suppression_level;
55 rtc::Optional<bool> use_delay_agnostic; 55 rtc::Optional<bool> use_delay_agnostic;
56 rtc::Optional<bool> use_extended_filter; 56 rtc::Optional<bool> use_extended_filter;
57 rtc::Optional<bool> use_drift_compensation; 57 rtc::Optional<bool> use_drift_compensation;
58 rtc::Optional<bool> use_aec3; 58 rtc::Optional<bool> use_aec3;
59 rtc::Optional<bool> use_lc;
59 rtc::Optional<int> aecm_routing_mode; 60 rtc::Optional<int> aecm_routing_mode;
60 rtc::Optional<bool> use_aecm_comfort_noise; 61 rtc::Optional<bool> use_aecm_comfort_noise;
61 rtc::Optional<int> agc_mode; 62 rtc::Optional<int> agc_mode;
62 rtc::Optional<int> agc_target_level; 63 rtc::Optional<int> agc_target_level;
63 rtc::Optional<bool> use_agc_limiter; 64 rtc::Optional<bool> use_agc_limiter;
64 rtc::Optional<int> agc_compression_gain; 65 rtc::Optional<int> agc_compression_gain;
65 rtc::Optional<int> vad_likelihood; 66 rtc::Optional<int> vad_likelihood;
66 rtc::Optional<int> ns_level; 67 rtc::Optional<int> ns_level;
67 rtc::Optional<bool> use_refined_adaptive_filter; 68 rtc::Optional<bool> use_refined_adaptive_filter;
68 bool report_performance = false; 69 bool report_performance = false;
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 std::unique_ptr<ChannelBufferWavWriter> reverse_buffer_writer_; 167 std::unique_ptr<ChannelBufferWavWriter> reverse_buffer_writer_;
167 TickIntervalStats proc_time_; 168 TickIntervalStats proc_time_;
168 169
169 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); 170 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator);
170 }; 171 };
171 172
172 } // namespace test 173 } // namespace test
173 } // namespace webrtc 174 } // namespace webrtc
174 175
175 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ 176 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698