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

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

Issue 2848593002: AGC2 as a new APM sub-module operating with hard-coded gain. (Closed)
Patch Set: unneeded DCHECK removed Created 3 years, 7 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
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<std::string> artificial_nearend_filename;
48 rtc::Optional<bool> use_aec; 48 rtc::Optional<bool> use_aec;
49 rtc::Optional<bool> use_aecm; 49 rtc::Optional<bool> use_aecm;
50 rtc::Optional<bool> use_ed; // Residual Echo Detector. 50 rtc::Optional<bool> use_ed; // Residual Echo Detector.
51 rtc::Optional<std::string> ed_graph_output_filename; 51 rtc::Optional<std::string> ed_graph_output_filename;
52 rtc::Optional<bool> use_agc; 52 rtc::Optional<bool> use_agc;
53 rtc::Optional<bool> use_agc2;
53 rtc::Optional<bool> use_hpf; 54 rtc::Optional<bool> use_hpf;
54 rtc::Optional<bool> use_ns; 55 rtc::Optional<bool> use_ns;
55 rtc::Optional<bool> use_ts; 56 rtc::Optional<bool> use_ts;
56 rtc::Optional<bool> use_bf; 57 rtc::Optional<bool> use_bf;
57 rtc::Optional<bool> use_ie; 58 rtc::Optional<bool> use_ie;
58 rtc::Optional<bool> use_vad; 59 rtc::Optional<bool> use_vad;
59 rtc::Optional<bool> use_le; 60 rtc::Optional<bool> use_le;
60 rtc::Optional<bool> use_all; 61 rtc::Optional<bool> use_all;
61 rtc::Optional<int> aec_suppression_level; 62 rtc::Optional<int> aec_suppression_level;
62 rtc::Optional<bool> use_delay_agnostic; 63 rtc::Optional<bool> use_delay_agnostic;
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 TickIntervalStats proc_time_; 177 TickIntervalStats proc_time_;
177 std::ofstream residual_echo_likelihood_graph_writer_; 178 std::ofstream residual_echo_likelihood_graph_writer_;
178 179
179 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator); 180 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(AudioProcessingSimulator);
180 }; 181 };
181 182
182 } // namespace test 183 } // namespace test
183 } // namespace webrtc 184 } // namespace webrtc
184 185
185 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_ 186 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_PROCESSING_SIMULATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698