Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Issue 2567513003: Added basic framework for AEC3 in the audio processing module (Closed)

Created:
4 years ago by peah-webrtc
Modified:
4 years ago
Reviewers:
ivoc, hlundin-webrtc, aleloi
CC:
webrtc-reviews_webrtc.org, peah-webrtc, Andrew MacDonald, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, kwiberg-webrtc, minyue-webrtc, the sun, aluebs-webrtc, bjornv1
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

This CL adds the basic framework for AEC3 in the audio processing module. It will be followed by a number of other CLs that extends this framework. BUG=webrtc:6018 Committed: https://crrev.com/e0eae3cec6f986ed756e644c596d897ce79646d8 Cr-Commit-Position: refs/heads/master@{#15593}

Patch Set 1 #

Total comments: 21

Patch Set 2 : Changes in response to reviewer comments #

Total comments: 17

Patch Set 3 : Changes in response to reviewer comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+208 lines, -66 lines) Patch
M webrtc/modules/audio_processing/BUILD.gn View 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/audio_processing/aec/aec_core.h View 1 2 2 chunks +1 line, -8 lines 0 comments Download
M webrtc/modules/audio_processing/aec/aec_core.cc View 2 chunks +0 lines, -10 lines 0 comments Download
A webrtc/modules/audio_processing/aec3/echo_canceller3.h View 1 2 1 chunk +48 lines, -0 lines 0 comments Download
A webrtc/modules/audio_processing/aec3/echo_canceller3.cc View 1 2 1 chunk +57 lines, -0 lines 0 comments Download
M webrtc/modules/audio_processing/audio_processing_impl.h View 4 chunks +4 lines, -0 lines 0 comments Download
M webrtc/modules/audio_processing/audio_processing_impl.cc View 1 17 chunks +72 lines, -8 lines 0 comments Download
M webrtc/modules/audio_processing/echo_cancellation_impl.h View 1 2 chunks +0 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/echo_cancellation_impl.cc View 1 4 chunks +2 lines, -15 lines 0 comments Download
M webrtc/modules/audio_processing/include/audio_processing.h View 1 2 2 chunks +8 lines, -11 lines 0 comments Download
M webrtc/modules/audio_processing/include/config.h View 1 1 chunk +4 lines, -4 lines 0 comments Download
M webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/test/audio_processing_simulator.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/test/debug_dump_test.cc View 4 chunks +8 lines, -6 lines 0 comments Download

Messages

Total messages: 23 (8 generated)
peah-webrtc
PTAL Thanks!
4 years ago (2016-12-09 10:05:16 UTC) #3
aleloi
LG on everything but but audio_processing_impl.*, which I haven't managed to get through yet. https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/echo_cancellation_impl.cc ...
4 years ago (2016-12-09 13:30:04 UTC) #4
aleloi
A few small comments on audio_processing_impl. https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode442 webrtc/modules/audio_processing/audio_processing_impl.cc:442: const int capture_audiobuffer_num_channels ...
4 years ago (2016-12-09 14:11:06 UTC) #5
ivoc
https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/aec3/echo_canceller3.cc File webrtc/modules/audio_processing/aec3/echo_canceller3.cc (right): https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/aec3/echo_canceller3.cc#newcode24 webrtc/modules/audio_processing/aec3/echo_canceller3.cc:24: ++instance_count_; Not sure if this is a concern in ...
4 years ago (2016-12-09 14:11:10 UTC) #6
peah-webrtc
Thanks for the reviews! Here are some updates in response to the comments. https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/aec3/echo_canceller3.cc File ...
4 years ago (2016-12-12 19:46:46 UTC) #8
aleloi
I can't spot anything more, lgtm!
4 years ago (2016-12-12 19:58:53 UTC) #9
hlundin-webrtc
Nice! A few comments. https://codereview.webrtc.org/2567513003/diff/40001/webrtc/modules/audio_processing/aec/aec_core.h File webrtc/modules/audio_processing/aec/aec_core.h (right): https://codereview.webrtc.org/2567513003/diff/40001/webrtc/modules/audio_processing/aec/aec_core.h#newcode242 webrtc/modules/audio_processing/aec/aec_core.h:242: // 1 = next generation ...
4 years ago (2016-12-12 21:35:21 UTC) #10
peah-webrtc
https://codereview.webrtc.org/2567513003/diff/40001/webrtc/modules/audio_processing/aec/aec_core.h File webrtc/modules/audio_processing/aec/aec_core.h (right): https://codereview.webrtc.org/2567513003/diff/40001/webrtc/modules/audio_processing/aec/aec_core.h#newcode242 webrtc/modules/audio_processing/aec/aec_core.h:242: // 1 = next generation aec mode enabled, 0 ...
4 years ago (2016-12-13 11:23:02 UTC) #11
hlundin-webrtc
lgtm https://codereview.webrtc.org/2567513003/diff/40001/webrtc/modules/audio_processing/aec3/echo_canceller3.cc File webrtc/modules/audio_processing/aec3/echo_canceller3.cc (right): https://codereview.webrtc.org/2567513003/diff/40001/webrtc/modules/audio_processing/aec3/echo_canceller3.cc#newcode29 webrtc/modules/audio_processing/aec3/echo_canceller3.cc:29: bool EchoCanceller3::AnalyzeRender(AudioBuffer* render) const { On 2016/12/13 11:23:02, ...
4 years ago (2016-12-14 08:15:56 UTC) #12
peah-webrtc
https://codereview.webrtc.org/2567513003/diff/40001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/2567513003/diff/40001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode442 webrtc/modules/audio_processing/audio_processing_impl.cc:442: int capture_audiobuffer_num_channels; On 2016/12/14 08:15:56, hlundin-webrtc wrote: > On ...
4 years ago (2016-12-14 08:52:19 UTC) #13
ivoc
lgtm https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/aec3/echo_canceller3.cc File webrtc/modules/audio_processing/aec3/echo_canceller3.cc (right): https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/aec3/echo_canceller3.cc#newcode24 webrtc/modules/audio_processing/aec3/echo_canceller3.cc:24: ++instance_count_; On 2016/12/12 19:46:45, peah-webrtc wrote: > On ...
4 years ago (2016-12-14 08:54:15 UTC) #14
peah-webrtc
https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/aec3/echo_canceller3.cc File webrtc/modules/audio_processing/aec3/echo_canceller3.cc (right): https://codereview.webrtc.org/2567513003/diff/1/webrtc/modules/audio_processing/aec3/echo_canceller3.cc#newcode24 webrtc/modules/audio_processing/aec3/echo_canceller3.cc:24: ++instance_count_; On 2016/12/14 08:54:15, ivoc wrote: > On 2016/12/12 ...
4 years ago (2016-12-14 08:56:16 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2567513003/60001
4 years ago (2016-12-14 08:56:29 UTC) #18
commit-bot: I haz the power
Committed patchset #3 (id:60001)
4 years ago (2016-12-14 09:16:27 UTC) #21
commit-bot: I haz the power
4 years ago (2016-12-14 09:16:37 UTC) #23
Message was sent while issue was closed.
Patchset 3 (id:??) landed as
https://crrev.com/e0eae3cec6f986ed756e644c596d897ce79646d8
Cr-Commit-Position: refs/heads/master@{#15593}

Powered by Google App Engine
This is Rietveld 408576698