24 lines
1.2 KiB
Diff
24 lines
1.2 KiB
Diff
From: Randell Jesup <rjesup@mozilla.com>
|
|
Date: Tue, 1 Oct 2024 21:28:00 +0000
|
|
Subject: Bug 1922048: fix comma instead of semicolon in libwebrtc AEC code
|
|
r=mjf,webrtc-reviewers
|
|
|
|
Differential Revision: https://phabricator.services.mozilla.com/D224242
|
|
Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/fd7a2f8d10cf9d6e862b8f8bb8e675f0d9ddb4bf
|
|
---
|
|
modules/audio_processing/aec3/echo_canceller3.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/modules/audio_processing/aec3/echo_canceller3.cc b/modules/audio_processing/aec3/echo_canceller3.cc
|
|
index 2a60377364..069bd30bf5 100644
|
|
--- a/modules/audio_processing/aec3/echo_canceller3.cc
|
|
+++ b/modules/audio_processing/aec3/echo_canceller3.cc
|
|
@@ -795,7 +795,7 @@ EchoCanceller3::EchoCanceller3(
|
|
linear_output_framer_.reset(
|
|
new BlockFramer(/*num_bands=*/1, num_capture_channels_));
|
|
linear_output_block_ =
|
|
- std::make_unique<Block>(/*num_bands=*/1, num_capture_channels_),
|
|
+ std::make_unique<Block>(/*num_bands=*/1, num_capture_channels_);
|
|
linear_output_sub_frame_view_ =
|
|
std::vector<std::vector<rtc::ArrayView<float>>>(
|
|
1, std::vector<rtc::ArrayView<float>>(num_capture_channels_));
|