Per Åhgren | b6b00dc | 2018-02-20 22:18:27 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 12 | namespace webrtc { |
| 13 | |
| 14 | EchoCanceller3Config::EchoCanceller3Config() = default; |
Per Åhgren | 251c735 | 2018-03-28 16:31:57 +0200 | [diff] [blame] | 15 | EchoCanceller3Config::EchoCanceller3Config(const EchoCanceller3Config& e) = |
| 16 | default; |
Per Åhgren | b02644f | 2018-04-17 11:52:17 +0200 | [diff] [blame] | 17 | EchoCanceller3Config::Mask::Mask() = default; |
| 18 | EchoCanceller3Config::Mask::Mask(const EchoCanceller3Config::Mask& m) = default; |
Per Åhgren | b6b00dc | 2018-02-20 22:18:27 +0100 | [diff] [blame] | 19 | |
Jesús de Vicente Peña | dd09287 | 2018-05-25 16:55:11 +0200 | [diff] [blame^] | 20 | EchoCanceller3Config::EchoModel::EchoModel() = default; |
| 21 | EchoCanceller3Config::EchoModel::EchoModel( |
| 22 | const EchoCanceller3Config::EchoModel& e) = default; |
| 23 | |
Per Åhgren | b6b00dc | 2018-02-20 22:18:27 +0100 | [diff] [blame] | 24 | } // namespace webrtc |