Bump to WebRTC M120 release
Some API deprecation -- ExperimentalAgc and ExperimentalNs are gone. We're continuing to carry iSAC even though it's gone upstream, but maybe we'll want to drop that soon.
This commit is contained in:
@ -12,7 +12,6 @@
|
||||
#define MODULES_AUDIO_PROCESSING_AEC3_REVERB_FREQUENCY_RESPONSE_H_
|
||||
|
||||
#include <array>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
#include "absl/types/optional.h"
|
||||
@ -24,7 +23,8 @@ namespace webrtc {
|
||||
// Class for updating the frequency response for the reverb.
|
||||
class ReverbFrequencyResponse {
|
||||
public:
|
||||
ReverbFrequencyResponse();
|
||||
explicit ReverbFrequencyResponse(
|
||||
bool use_conservative_tail_frequency_response);
|
||||
~ReverbFrequencyResponse();
|
||||
|
||||
// Updates the frequency response estimate of the reverb.
|
||||
@ -45,6 +45,7 @@ class ReverbFrequencyResponse {
|
||||
int filter_delay_blocks,
|
||||
float linear_filter_quality);
|
||||
|
||||
const bool use_conservative_tail_frequency_response_;
|
||||
float average_decay_ = 0.f;
|
||||
std::array<float, kFftLengthBy2Plus1> tail_response_;
|
||||
};
|
||||
|
Reference in New Issue
Block a user