-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workaround abort on temporary echo bands mismatch (bug 8759)
- Loading branch information
1 parent
9d8d94d
commit b6d92cb
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/modules/audio_processing/aec3/echo_canceller3.cc b/modules/audio_processing/aec3/echo_canceller3.cc | ||
index e8e2175994..cc4aa65f0f 100644 | ||
--- a/modules/audio_processing/aec3/echo_canceller3.cc | ||
+++ b/modules/audio_processing/aec3/echo_canceller3.cc | ||
@@ -696,7 +696,7 @@ EchoCanceller3::RenderWriter::~RenderWriter() = default; | ||
|
||
void EchoCanceller3::RenderWriter::Insert(const AudioBuffer& input) { | ||
RTC_DCHECK_EQ(AudioBuffer::kSplitBandSize, input.num_frames_per_band()); | ||
- RTC_DCHECK_EQ(num_bands_, input.num_bands()); | ||
+ // RTC_DCHECK_EQ(num_bands_, input.num_bands()); // commented as per bugs.webrtc.org/8759 | ||
RTC_DCHECK_EQ(num_channels_, input.num_channels()); | ||
|
||
// TODO(bugs.webrtc.org/8759) Temporary work-around. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters