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

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

Issue 2778783002: AecDump interface (Closed)
Patch Set: Moved 'forced' config logic from AecDump to AudioProcessingImpl. Plus minor other issues. 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 InternalAPMConfig& InternalAPMConfig::operator=(InternalAPMConfig&&) = default;
20
21 bool InternalAPMConfig::Equals(const InternalAPMConfig& other) {
22 return aec_enabled == other.aec_enabled &&
23 aec_delay_agnostic_enabled == other.aec_delay_agnostic_enabled &&
24 aec_drift_compensation_enabled ==
25 other.aec_drift_compensation_enabled &&
26 aec_extended_filter_enabled == other.aec_extended_filter_enabled &&
27 aec_suppression_level == other.aec_suppression_level &&
28 aecm_enabled == other.aecm_enabled &&
29 aecm_comfort_noise_enabled == other.aecm_comfort_noise_enabled &&
30 aecm_routing_mode == other.aecm_routing_mode &&
31 agc_enabled == other.agc_enabled && agc_mode == other.agc_mode &&
32 agc_limiter_enabled == other.agc_limiter_enabled &&
33 hpf_enabled == other.hpf_enabled && ns_enabled == other.ns_enabled &&
34 ns_level == other.ns_level &&
35 transient_suppression_enabled == other.transient_suppression_enabled &&
36 intelligibility_enhancer_enabled ==
37 other.intelligibility_enhancer_enabled &&
38 noise_robust_agc_enabled == other.noise_robust_agc_enabled &&
39 experiments_description == other.experiments_description;
40 }
41 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698