mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00

The features have two safety fallbacks: - multichannel config has a killswitch WebRTC-Aec3SetupSpecificDefaultConfigDefaultsKillSwitch - stereo detection has a killswitch WebRTC-Aec3StereoContentDetectionKillSwitch Both features are enabled by default in the AEC3 config. Tested: Bitexact on a large number of aecdumps. Bug: chromium:1295710 Change-Id: I340cdc9140dacd4ca22d0911eb9f732b6cf8b226 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/258129 Reviewed-by: Per Åhgren <peah@webrtc.org> Commit-Queue: Sam Zackrisson <saza@webrtc.org> Cr-Commit-Position: refs/heads/main@{#36482}
32 lines
1 KiB
C++
32 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
#include "api/audio/echo_canceller3_factory.h"
|
|
|
|
#include <memory>
|
|
|
|
#include "modules/audio_processing/aec3/echo_canceller3.h"
|
|
|
|
namespace webrtc {
|
|
|
|
EchoCanceller3Factory::EchoCanceller3Factory() {}
|
|
|
|
EchoCanceller3Factory::EchoCanceller3Factory(const EchoCanceller3Config& config)
|
|
: config_(config) {}
|
|
|
|
std::unique_ptr<EchoControl> EchoCanceller3Factory::Create(
|
|
int sample_rate_hz,
|
|
int num_render_channels,
|
|
int num_capture_channels) {
|
|
return std::make_unique<EchoCanceller3>(
|
|
config_, /*multichannel_config=*/absl::nullopt, sample_rate_hz,
|
|
num_render_channels, num_capture_channels);
|
|
}
|
|
|
|
} // namespace webrtc
|