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

Issue 1805633006: Adding BlockMeanCalculator for AEC. (Closed)

Created:
4 years, 9 months ago by minyue-webrtc
Modified:
4 years, 9 months ago
Reviewers:
peah-webrtc
CC:
webrtc-reviews_webrtc.org, Andrew MacDonald, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, kwiberg-webrtc, minyue-webrtc, the sun, aluebs-webrtc, bjornv1
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Adding BlockMeanCalculator for AEC. This will improve the readability of AEC code. BUG= Committed: https://crrev.com/84db6fa7f539f59e53c5a2af6e89856505db62c0 Cr-Commit-Position: refs/heads/master@{#12123}

Patch Set 1 : #

Total comments: 19

Patch Set 2 : address comments #

Total comments: 1

Patch Set 3 : renaming files #

Total comments: 8

Patch Set 4 : adding more comments #

Total comments: 7

Patch Set 5 : adding DCHECK #

Patch Set 6 : rebase #

Patch Set 7 : use delete instead of free #

Unified diffs Side-by-side diffs Delta from patch set Stats (+227 lines, -57 lines) Patch
M webrtc/modules/audio_processing/BUILD.gn View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/audio_processing/aec/aec_core.cc View 1 2 3 4 5 6 9 chunks +51 lines, -51 lines 0 comments Download
M webrtc/modules/audio_processing/aec/aec_core_internal.h View 1 2 2 chunks +7 lines, -6 lines 0 comments Download
M webrtc/modules/audio_processing/audio_processing.gypi View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
A webrtc/modules/audio_processing/utility/block_mean_calculator.h View 1 2 3 1 chunk +52 lines, -0 lines 0 comments Download
A webrtc/modules/audio_processing/utility/block_mean_calculator.cc View 1 2 3 4 1 chunk +53 lines, -0 lines 0 comments Download
A webrtc/modules/audio_processing/utility/block_mean_calculator_unittest.cc View 1 2 3 1 chunk +59 lines, -0 lines 0 comments Download
M webrtc/modules/modules.gyp View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 48 (25 generated)
minyue-webrtc
Hi Per, Here is a clean up on the mean calculation in audio levels. I ...
4 years, 9 months ago (2016-03-17 15:24:14 UTC) #7
peah-webrtc
Nice! The code definitely becomes cleaner! I have some comments though. https://codereview.webrtc.org/1805633006/diff/80001/webrtc/modules/audio_processing/aec/aec_core.cc File webrtc/modules/audio_processing/aec/aec_core.cc (right): ...
4 years, 9 months ago (2016-03-18 09:18:35 UTC) #8
minyue-webrtc
Hi Per, Thanks for the review! I've made changes. To make your review easier, Patch ...
4 years, 9 months ago (2016-03-21 15:27:52 UTC) #10
minyue-webrtc
Hi Per, Do you have more comments on this?
4 years, 9 months ago (2016-03-23 11:37:36 UTC) #11
peah-webrtc
https://codereview.webrtc.org/1805633006/diff/140001/webrtc/modules/audio_processing/aec/aec_core.cc File webrtc/modules/audio_processing/aec/aec_core.cc (right): https://codereview.webrtc.org/1805633006/diff/140001/webrtc/modules/audio_processing/aec/aec_core.cc#newcode624 webrtc/modules/audio_processing/aec/aec_core.cc:624: const float linout_average_level = Please move this closer to ...
4 years, 9 months ago (2016-03-24 07:18:42 UTC) #12
minyue-webrtc
Thanks for he comments! I have a new patch now. https://codereview.webrtc.org/1805633006/diff/140001/webrtc/modules/audio_processing/aec/aec_core.cc File webrtc/modules/audio_processing/aec/aec_core.cc (right): https://codereview.webrtc.org/1805633006/diff/140001/webrtc/modules/audio_processing/aec/aec_core.cc#newcode624 ...
4 years, 9 months ago (2016-03-24 09:13:58 UTC) #13
peah-webrtc
https://codereview.webrtc.org/1805633006/diff/160001/webrtc/modules/audio_processing/aec/aec_core.cc File webrtc/modules/audio_processing/aec/aec_core.cc (right): https://codereview.webrtc.org/1805633006/diff/160001/webrtc/modules/audio_processing/aec/aec_core.cc#newcode618 webrtc/modules/audio_processing/aec/aec_core.cc:618: // Estimate in active far-end segments only Please move ...
4 years, 9 months ago (2016-03-24 11:21:58 UTC) #14
minyue-webrtc
Thanks, Per! Now comes another patch. https://codereview.webrtc.org/1805633006/diff/160001/webrtc/modules/audio_processing/utility/block_mean_calculator.cc File webrtc/modules/audio_processing/utility/block_mean_calculator.cc (right): https://codereview.webrtc.org/1805633006/diff/160001/webrtc/modules/audio_processing/utility/block_mean_calculator.cc#newcode19 webrtc/modules/audio_processing/utility/block_mean_calculator.cc:19: mean_(0.0) { On ...
4 years, 9 months ago (2016-03-24 11:43:33 UTC) #16
peah-webrtc
On 2016/03/24 11:43:33, minyue-webrtc wrote: > Thanks, Per! Now comes another patch. > > https://codereview.webrtc.org/1805633006/diff/160001/webrtc/modules/audio_processing/utility/block_mean_calculator.cc ...
4 years, 9 months ago (2016-03-24 11:56:17 UTC) #17
peah-webrtc
On 2016/03/24 11:43:33, minyue-webrtc wrote: > Thanks, Per! Now comes another patch. > > https://codereview.webrtc.org/1805633006/diff/160001/webrtc/modules/audio_processing/utility/block_mean_calculator.cc ...
4 years, 9 months ago (2016-03-24 11:56:18 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805633006/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805633006/180001
4 years, 9 months ago (2016-03-24 11:58:03 UTC) #20
commit-bot: I haz the power
Try jobs failed on following builders: android_clang_dbg on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_clang_dbg/builds/11776) android_compile_x86_dbg on tryserver.webrtc (JOB_FAILED, ...
4 years, 9 months ago (2016-03-24 11:59:14 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805633006/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805633006/200001
4 years, 9 months ago (2016-03-24 12:34:39 UTC) #25
commit-bot: I haz the power
Try jobs failed on following builders: android_clang_dbg on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_clang_dbg/builds/11778) android_compile_x86_dbg on tryserver.webrtc (JOB_FAILED, ...
4 years, 9 months ago (2016-03-24 12:35:50 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805633006/220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805633006/220001
4 years, 9 months ago (2016-03-24 12:49:30 UTC) #31
commit-bot: I haz the power
Try jobs failed on following builders: linux_asan on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/linux_asan/builds/13496)
4 years, 9 months ago (2016-03-24 13:07:00 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805633006/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805633006/240001
4 years, 9 months ago (2016-03-24 13:29:08 UTC) #36
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_rel on tryserver.webrtc (JOB_TIMED_OUT, no build URL) android_dbg on ...
4 years, 9 months ago (2016-03-24 15:29:41 UTC) #38
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805633006/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805633006/240001
4 years, 9 months ago (2016-03-24 15:30:29 UTC) #40
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_rel on tryserver.webrtc (JOB_TIMED_OUT, no build URL) linux_baremetal on ...
4 years, 9 months ago (2016-03-24 17:31:05 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1805633006/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1805633006/240001
4 years, 9 months ago (2016-03-24 21:34:05 UTC) #44
commit-bot: I haz the power
Committed patchset #7 (id:240001)
4 years, 9 months ago (2016-03-24 21:36:31 UTC) #46
commit-bot: I haz the power
4 years, 9 months ago (2016-03-24 21:36:42 UTC) #48
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/84db6fa7f539f59e53c5a2af6e89856505db62c0
Cr-Commit-Position: refs/heads/master@{#12123}

Powered by Google App Engine
This is Rietveld 408576698