Bump to WebRTC M131 release
Ongoing fixes and improvements, transient suppressor is gone. Also, dropping isac because it doesn't seem to be useful, and is just build system deadweight now. Upstream references: Version: 131.0.6778.200 WebRTC: 79aff54b0fa9238ce3518dd9eaf9610cd6f22e82 Chromium: 2a19506ad24af755f2a215a4c61f775393e0db42
This commit is contained in:
@ -12,8 +12,8 @@
|
||||
|
||||
#include <algorithm>
|
||||
#include <numeric>
|
||||
#include <optional>
|
||||
|
||||
#include "absl/types/optional.h"
|
||||
#include "modules/audio_processing/logging/apm_data_dumper.h"
|
||||
#include "rtc_base/checks.h"
|
||||
#include "rtc_base/logging.h"
|
||||
@ -89,7 +89,7 @@ void ResidualEchoDetector::AnalyzeCaptureAudio(
|
||||
}
|
||||
|
||||
// Get the next render value.
|
||||
const absl::optional<float> buffered_render_power = render_buffer_.Pop();
|
||||
const std::optional<float> buffered_render_power = render_buffer_.Pop();
|
||||
if (!buffered_render_power) {
|
||||
// This can happen in a few cases: at the start of a call, due to a glitch
|
||||
// or due to clock drift. The excess capture value will be ignored.
|
||||
|
Reference in New Issue
Block a user