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

Side by Side Diff: webrtc/modules/audio_processing/include/aec_dump.cc

Issue 2778783002: AecDump interface (Closed)
Patch Set: Comment formatting. 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
(Empty)
1 /*
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #include "webrtc/modules/audio_processing/include/aec_dump.h"
12
13 namespace webrtc {
14 InternalAPMConfig::InternalAPMConfig() = default;
15 InternalAPMConfig::InternalAPMConfig(const InternalAPMConfig&) = default;
16 InternalAPMConfig::InternalAPMConfig(InternalAPMConfig&&) = default;
17 InternalAPMConfig& InternalAPMConfig::operator=(const InternalAPMConfig&) =
18 default;
19
20 bool InternalAPMConfig::operator==(const InternalAPMConfig& other) {
21 return aec_enabled == other.aec_enabled &&
22 aec_delay_agnostic_enabled == other.aec_delay_agnostic_enabled &&
23 aec_drift_compensation_enabled ==
24 other.aec_drift_compensation_enabled &&
25 aec_extended_filter_enabled == other.aec_extended_filter_enabled &&
26 aec_suppression_level == other.aec_suppression_level &&
27 aecm_enabled == other.aecm_enabled &&
28 aecm_comfort_noise_enabled == other.aecm_comfort_noise_enabled &&
29 aecm_routing_mode == other.aecm_routing_mode &&
30 agc_enabled == other.agc_enabled && agc_mode == other.agc_mode &&
31 agc_limiter_enabled == other.agc_limiter_enabled &&
32 hpf_enabled == other.hpf_enabled && ns_enabled == other.ns_enabled &&
33 ns_level == other.ns_level &&
34 transient_suppression_enabled == other.transient_suppression_enabled &&
35 intelligibility_enhancer_enabled ==
36 other.intelligibility_enhancer_enabled &&
37 noise_robust_agc_enabled == other.noise_robust_agc_enabled &&
38 experiments_description == other.experiments_description;
39 }
40 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/include/aec_dump.h ('k') | webrtc/modules/audio_processing/include/audio_processing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698