2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-01-30 09:39:08 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2012-01-30 09:39:08 +00:00
|
|
|
#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CANCELLATION_IMPL_H_
|
|
|
|
|
#define WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CANCELLATION_IMPL_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2016-02-19 07:04:49 -08:00
|
|
|
#include <memory>
|
2016-03-24 01:51:52 -07:00
|
|
|
#include <vector>
|
2016-02-19 07:04:49 -08:00
|
|
|
|
2016-03-05 03:01:14 -08:00
|
|
|
#include "webrtc/base/constructormagic.h"
|
2015-11-28 12:35:15 -08:00
|
|
|
#include "webrtc/base/criticalsection.h"
|
2016-03-24 01:51:52 -07:00
|
|
|
#include "webrtc/base/swap_queue.h"
|
2014-02-27 22:23:17 +00:00
|
|
|
#include "webrtc/modules/audio_processing/include/audio_processing.h"
|
2016-03-10 23:05:28 -08:00
|
|
|
#include "webrtc/modules/audio_processing/render_queue_item_verifier.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
2013-07-25 18:28:29 +00:00
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
class AudioBuffer;
|
|
|
|
|
|
2016-03-05 03:01:14 -08:00
|
|
|
class EchoCancellationImpl : public EchoCancellation {
|
2011-07-07 08:21:25 +00:00
|
|
|
public:
|
2016-03-15 09:34:24 -07:00
|
|
|
EchoCancellationImpl(rtc::CriticalSection* crit_render,
|
2015-11-28 12:35:15 -08:00
|
|
|
rtc::CriticalSection* crit_capture);
|
2016-08-29 14:46:07 -07:00
|
|
|
~EchoCancellationImpl() override;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2014-02-27 22:23:17 +00:00
|
|
|
int ProcessRenderAudio(const AudioBuffer* audio);
|
2016-03-15 09:34:24 -07:00
|
|
|
int ProcessCaptureAudio(AudioBuffer* audio, int stream_delay_ms);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
// EchoCancellation implementation.
|
2015-03-04 12:58:35 +00:00
|
|
|
bool is_enabled() const override;
|
|
|
|
|
int stream_drift_samples() const override;
|
2015-10-03 00:39:14 +02:00
|
|
|
SuppressionLevel suppression_level() const override;
|
|
|
|
|
bool is_drift_compensation_enabled() const override;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2016-03-15 09:34:24 -07:00
|
|
|
void Initialize(int sample_rate_hz,
|
|
|
|
|
size_t num_reverse_channels_,
|
|
|
|
|
size_t num_output_channels_,
|
|
|
|
|
size_t num_proc_channels_);
|
2016-09-12 16:47:25 -07:00
|
|
|
void SetExtraOptions(const webrtc::Config& config);
|
2015-10-03 00:39:14 +02:00
|
|
|
bool is_delay_agnostic_enabled() const;
|
|
|
|
|
bool is_extended_filter_enabled() const;
|
2016-03-07 16:59:39 -08:00
|
|
|
bool is_aec3_enabled() const;
|
2016-04-15 01:19:44 -07:00
|
|
|
std::string GetExperimentsDescription();
|
2016-04-15 11:23:33 -07:00
|
|
|
bool is_refined_adaptive_filter_enabled() const;
|
2015-10-03 00:39:14 +02:00
|
|
|
|
2015-11-16 16:27:42 -08:00
|
|
|
// Reads render side data that has been queued on the render call.
|
2015-11-28 12:35:15 -08:00
|
|
|
// Called holding the capture lock.
|
2015-11-16 16:27:42 -08:00
|
|
|
void ReadQueuedRenderData();
|
|
|
|
|
|
2016-03-04 11:50:54 -08:00
|
|
|
// Returns the system delay of the first AEC component.
|
|
|
|
|
int GetSystemDelayInSamples() const;
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
private:
|
2016-03-05 03:01:14 -08:00
|
|
|
class Canceller;
|
2016-03-15 09:34:24 -07:00
|
|
|
struct StreamProperties;
|
2016-03-05 03:01:14 -08:00
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
// EchoCancellation implementation.
|
2015-03-04 12:58:35 +00:00
|
|
|
int Enable(bool enable) override;
|
|
|
|
|
int enable_drift_compensation(bool enable) override;
|
|
|
|
|
void set_stream_drift_samples(int drift) override;
|
|
|
|
|
int set_suppression_level(SuppressionLevel level) override;
|
|
|
|
|
int enable_metrics(bool enable) override;
|
|
|
|
|
bool are_metrics_enabled() const override;
|
|
|
|
|
bool stream_has_echo() const override;
|
|
|
|
|
int GetMetrics(Metrics* metrics) override;
|
|
|
|
|
int enable_delay_logging(bool enable) override;
|
|
|
|
|
bool is_delay_logging_enabled() const override;
|
|
|
|
|
int GetDelayMetrics(int* median, int* std) override;
|
|
|
|
|
int GetDelayMetrics(int* median,
|
|
|
|
|
int* std,
|
|
|
|
|
float* fraction_poor_delays) override;
|
2015-11-28 12:35:15 -08:00
|
|
|
|
2015-03-04 12:58:35 +00:00
|
|
|
struct AecCore* aec_core() const override;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2016-03-15 09:34:24 -07:00
|
|
|
size_t NumCancellersRequired() const;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-11-16 16:27:42 -08:00
|
|
|
void AllocateRenderQueue();
|
2016-03-05 03:01:14 -08:00
|
|
|
int Configure();
|
2015-11-16 16:27:42 -08:00
|
|
|
|
2015-11-28 12:35:15 -08:00
|
|
|
rtc::CriticalSection* const crit_render_ ACQUIRED_BEFORE(crit_capture_);
|
|
|
|
|
rtc::CriticalSection* const crit_capture_;
|
|
|
|
|
|
2016-03-05 03:01:14 -08:00
|
|
|
bool enabled_ = false;
|
2015-11-28 12:35:15 -08:00
|
|
|
bool drift_compensation_enabled_ GUARDED_BY(crit_capture_);
|
|
|
|
|
bool metrics_enabled_ GUARDED_BY(crit_capture_);
|
|
|
|
|
SuppressionLevel suppression_level_ GUARDED_BY(crit_capture_);
|
|
|
|
|
int stream_drift_samples_ GUARDED_BY(crit_capture_);
|
|
|
|
|
bool was_stream_drift_set_ GUARDED_BY(crit_capture_);
|
|
|
|
|
bool stream_has_echo_ GUARDED_BY(crit_capture_);
|
|
|
|
|
bool delay_logging_enabled_ GUARDED_BY(crit_capture_);
|
|
|
|
|
bool extended_filter_enabled_ GUARDED_BY(crit_capture_);
|
|
|
|
|
bool delay_agnostic_enabled_ GUARDED_BY(crit_capture_);
|
2016-03-07 16:59:39 -08:00
|
|
|
bool aec3_enabled_ GUARDED_BY(crit_capture_);
|
2016-04-15 11:23:33 -07:00
|
|
|
bool refined_adaptive_filter_enabled_ GUARDED_BY(crit_capture_) = false;
|
2015-11-28 12:35:15 -08:00
|
|
|
|
|
|
|
|
size_t render_queue_element_max_size_ GUARDED_BY(crit_render_)
|
|
|
|
|
GUARDED_BY(crit_capture_);
|
|
|
|
|
std::vector<float> render_queue_buffer_ GUARDED_BY(crit_render_);
|
|
|
|
|
std::vector<float> capture_queue_buffer_ GUARDED_BY(crit_capture_);
|
|
|
|
|
|
|
|
|
|
// Lock protection not needed.
|
2016-02-19 07:04:49 -08:00
|
|
|
std::unique_ptr<SwapQueue<std::vector<float>, RenderQueueItemVerifier<float>>>
|
2015-11-16 16:27:42 -08:00
|
|
|
render_signal_queue_;
|
2016-03-05 03:01:14 -08:00
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<Canceller>> cancellers_;
|
2016-03-15 09:34:24 -07:00
|
|
|
std::unique_ptr<StreamProperties> stream_properties_;
|
|
|
|
|
|
2016-03-05 03:01:14 -08:00
|
|
|
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(EchoCancellationImpl);
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
2013-07-25 18:28:29 +00:00
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2012-01-30 09:39:08 +00:00
|
|
|
#endif // WEBRTC_MODULES_AUDIO_PROCESSING_ECHO_CANCELLATION_IMPL_H_
|