blob: 9af7f11c578e3cb1ded86833da295d20c6a21d4a [file] [log] [blame]
Per Åhgrenb6b00dc2018-02-20 22:18:27 +01001/*
2 * Copyright (c) 2018 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#include "api/audio/echo_canceller3_config.h"
11
12namespace webrtc {
13
14EchoCanceller3Config::EchoCanceller3Config() = default;
Per Åhgren251c7352018-03-28 16:31:57 +020015EchoCanceller3Config::EchoCanceller3Config(const EchoCanceller3Config& e) =
16 default;
Per Åhgrenb02644f2018-04-17 11:52:17 +020017EchoCanceller3Config::Mask::Mask() = default;
18EchoCanceller3Config::Mask::Mask(const EchoCanceller3Config::Mask& m) = default;
Per Åhgrenb6b00dc2018-02-20 22:18:27 +010019
Jesús de Vicente Peñadd092872018-05-25 16:55:11 +020020EchoCanceller3Config::EchoModel::EchoModel() = default;
21EchoCanceller3Config::EchoModel::EchoModel(
22 const EchoCanceller3Config::EchoModel& e) = default;
23
Per Åhgrenb6b00dc2018-02-20 22:18:27 +010024} // namespace webrtc