mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 06:10:40 +01:00

Bug: webrtc:5298 Change-Id: Ia1c5eb9d0f7b4ba578acb646e73229de63ae91fb Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/161441 Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org> Commit-Queue: Per Åhgren <peah@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30089}
57 lines
2 KiB
C++
57 lines
2 KiB
C++
/*
|
|
* Copyright (c) 2019 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 MODULES_AUDIO_PROCESSING_LEGACY_NS_LEGACY_NOISE_SUPPRESSION_H_
|
|
#define MODULES_AUDIO_PROCESSING_LEGACY_NS_LEGACY_NOISE_SUPPRESSION_H_
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace webrtc {
|
|
|
|
class AudioBuffer;
|
|
|
|
// The noise suppression (NS) component attempts to remove noise while
|
|
// retaining speech. Recommended to be enabled on the client-side.
|
|
class NoiseSuppression {
|
|
public:
|
|
// Determines the aggressiveness of the suppression. Increasing the level
|
|
// will reduce the noise level at the expense of a higher speech distortion.
|
|
enum class Level { kLow, kModerate, kHigh, kVeryHigh };
|
|
|
|
NoiseSuppression(size_t channels, int sample_rate_hz, Level level);
|
|
~NoiseSuppression();
|
|
|
|
NoiseSuppression(NoiseSuppression&) = delete;
|
|
NoiseSuppression& operator=(NoiseSuppression&) = delete;
|
|
|
|
void AnalyzeCaptureAudio(AudioBuffer* audio);
|
|
void ProcessCaptureAudio(AudioBuffer* audio);
|
|
|
|
// LEGACY: Returns the internally computed prior speech probability of current
|
|
// frame averaged over output channels. This is not supported in fixed point,
|
|
// for which |kUnsupportedFunctionError| is returned.
|
|
float speech_probability() const;
|
|
|
|
// LEGACY: Returns the size of the noise vector returned by NoiseEstimate().
|
|
static size_t num_noise_bins();
|
|
|
|
// LEGACY: Returns the noise estimate per frequency bin averaged over all
|
|
// channels.
|
|
std::vector<float> NoiseEstimate();
|
|
|
|
private:
|
|
class Suppressor;
|
|
|
|
std::vector<std::unique_ptr<Suppressor>> suppressors_;
|
|
};
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_AUDIO_PROCESSING_LEGACY_NS_LEGACY_NOISE_SUPPRESSION_H_
|