This reverts commit 9dda1b3a484ebeef921e419406402039f3852427. Reason for revert: The CL is causing downstream issues Original change's description: > Correct AEC3 multichannel functionality activation > > This CL corrects the AEC3 multichannel activation > to also work for the case when a factory is used > for the activation. > > Bug: webrtc:10913 > Change-Id: Ic2807d8bcef759261fde14447cff30633ba248dc > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/158794 > Commit-Queue: Per Åhgren <peah@webrtc.org> > Reviewed-by: Sam Zackrisson <saza@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#29676} TBR=saza@webrtc.org,peah@webrtc.org Change-Id: Ic487f77f5c11485a0f25a2a1d3797d0ec956f913 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: webrtc:10913 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/158797 Reviewed-by: Per Åhgren <peah@webrtc.org> Commit-Queue: Per Åhgren <peah@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29678}
41 lines
1.3 KiB
C++
41 lines
1.3 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.
|
|
*/
|
|
|
|
#ifndef API_AUDIO_ECHO_CANCELLER3_FACTORY_H_
|
|
#define API_AUDIO_ECHO_CANCELLER3_FACTORY_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "api/audio/echo_canceller3_config.h"
|
|
#include "api/audio/echo_control.h"
|
|
#include "rtc_base/system/rtc_export.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class RTC_EXPORT EchoCanceller3Factory : public EchoControlFactory {
|
|
public:
|
|
// Factory producing EchoCanceller3 instances with the default configuration.
|
|
EchoCanceller3Factory();
|
|
|
|
// Factory producing EchoCanceller3 instances with the specified
|
|
// configuration.
|
|
explicit EchoCanceller3Factory(const EchoCanceller3Config& config);
|
|
|
|
// Creates an EchoCanceller3 running at the specified sampling rate using a
|
|
// mono setup
|
|
std::unique_ptr<EchoControl> Create(int sample_rate_hz) override;
|
|
|
|
private:
|
|
const EchoCanceller3Config config_;
|
|
};
|
|
} // namespace webrtc
|
|
|
|
#endif // API_AUDIO_ECHO_CANCELLER3_FACTORY_H_
|