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

Issue 1348903004: Adding APM configuration in AEC dump. (Closed)

Created:
5 years, 3 months ago by minyue-webrtc
Modified:
5 years, 2 months ago
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com, kwiberg-webrtc, aluebs-webrtc, bjornv1, mgraczyk
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Adding APM configuration in AEC dump. The AEC dump was not self-contented enough in the sense that APM configuration is missing, and therefore, given an AEC dump, it is sometimes not clear how to reproduce problems. This CL tries to address the problem. Note that this cannot guarantee a perfect reproduction in all cases. Dumping from the middle of a call makes the initial states unknown and thus may make the result non-reproducible. BUG= TEST= 1. new dump in Chromium and unpack 2. unpack old dump R=andrew@webrtc.org, peah@webrtc.org Committed: https://crrev.com/13b96ba90f72164134019cbfc07d4a47cf1fd091 Cr-Commit-Position: refs/heads/master@{#10155}

Patch Set 1 #

Total comments: 22

Patch Set 2 : update #

Total comments: 2

Patch Set 3 : fixing an issue and let unittest pass #

Total comments: 31

Patch Set 4 : Remove ApmConfig and use audioproc::Config #

Total comments: 18

Patch Set 5 : removing an unnecessary test #

Total comments: 11

Patch Set 6 : removing macro and more #

Total comments: 12

Patch Set 7 : serialize Config #

Patch Set 8 : unmerge a wrong change #

Total comments: 7

Patch Set 9 : renaming two fields #

Total comments: 14

Patch Set 10 : fixing some nits #

Total comments: 2

Patch Set 11 : last commit was hasty, having an error #

Unified diffs Side-by-side diffs Delta from patch set Stats (+143 lines, -19 lines) Patch
M webrtc/modules/audio_processing/audio_processing_impl.h View 1 2 3 4 5 6 1 chunk +9 lines, -0 lines 0 comments Download
M webrtc/modules/audio_processing/audio_processing_impl.cc View 1 2 3 4 5 6 7 8 9 10 4 chunks +50 lines, -11 lines 0 comments Download
M webrtc/modules/audio_processing/debug.proto View 1 2 3 4 5 6 7 8 9 3 chunks +33 lines, -0 lines 0 comments Download
M webrtc/modules/audio_processing/echo_cancellation_impl.h View 1 2 3 1 chunk +5 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/echo_cancellation_impl.cc View 1 1 chunk +8 lines, -0 lines 0 comments Download
M webrtc/modules/audio_processing/echo_control_mobile_impl.h View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/gain_control_impl.h View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/noise_suppression_impl.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/audio_processing/test/unpack.cc View 1 2 3 4 5 6 7 8 9 3 chunks +33 lines, -1 line 0 comments Download

Messages

Total messages: 78 (14 generated)
minyue-webrtc
Hi Per and Ivo, Since you are APM and protobuf experts, I choose you to ...
5 years, 3 months ago (2015-09-18 09:53:15 UTC) #2
ivoc
Nice, seems like a useful addition! Most of the changes look fine to me, beside ...
5 years, 3 months ago (2015-09-22 11:18:54 UTC) #3
minyue-webrtc
On 2015/09/22 11:18:54, ivoc wrote: > Nice, seems like a useful addition! Most of the ...
5 years, 3 months ago (2015-09-22 11:39:15 UTC) #4
minyue-webrtc
and some more https://codereview.chromium.org/1348903004/diff/1/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.chromium.org/1348903004/diff/1/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode470 webrtc/modules/audio_processing/audio_processing_impl.cc:470: int err = WriteInitMessage(); On 2015/09/22 ...
5 years, 3 months ago (2015-09-22 11:39:28 UTC) #5
peah-webrtc
https://codereview.webrtc.org/1348903004/diff/1/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/1/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode470 webrtc/modules/audio_processing/audio_processing_impl.cc:470: int err = WriteInitMessage(); On 2015/09/22 11:39:28, minyue-webrtc wrote: ...
5 years, 3 months ago (2015-09-22 12:05:29 UTC) #6
minyue-webrtc
Thanks for the comments! Please see a new patch set and inline comments. https://codereview.webrtc.org/1348903004/diff/1/webrtc/modules/audio_processing/audio_processing_impl.cc File ...
5 years, 3 months ago (2015-09-22 13:19:30 UTC) #7
Andrew MacDonald
Drive-by. Thanks for looking at this Minyue. We've long considered it, but deferred due to ...
5 years, 3 months ago (2015-09-23 01:43:22 UTC) #9
ivoc
On 2015/09/23 01:43:22, Andrew MacDonald wrote: > Drive-by. > > Thanks for looking at this ...
5 years, 3 months ago (2015-09-23 07:58:45 UTC) #10
minyue
On 2015/09/23 01:43:22, Andrew MacDonald wrote: > Drive-by. > > Thanks for looking at this ...
5 years, 3 months ago (2015-09-23 08:31:27 UTC) #11
Andrew MacDonald
On 2015/09/23 07:58:45, ivoc wrote: > On 2015/09/23 01:43:22, Andrew MacDonald wrote: > > Drive-by. ...
5 years, 3 months ago (2015-09-23 18:07:19 UTC) #12
Andrew MacDonald
On 2015/09/23 08:31:27, minyue wrote: > The reason of the this CL is that we ...
5 years, 3 months ago (2015-09-23 18:37:51 UTC) #13
peah-webrtc
https://codereview.webrtc.org/1348903004/diff/1/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/1/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode470 webrtc/modules/audio_processing/audio_processing_impl.cc:470: int err = WriteInitMessage(); On 2015/09/22 13:19:29, minyue-webrtc wrote: ...
5 years, 3 months ago (2015-09-24 09:28:02 UTC) #14
hlundin-webrtc
On 2015/09/23 18:37:51, Andrew MacDonald wrote: > On 2015/09/23 08:31:27, minyue wrote: > > The ...
5 years, 3 months ago (2015-09-24 12:57:14 UTC) #15
minyue-webrtc
The audio team discussed over this a bit today. We see some immediate advantages so ...
5 years, 3 months ago (2015-09-24 17:09:58 UTC) #17
minyue-webrtc
some more comments on the new patch set. https://codereview.webrtc.org/1348903004/diff/40001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/40001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode560 webrtc/modules/audio_processing/audio_processing_impl.cc:560: if ...
5 years, 3 months ago (2015-09-24 17:26:23 UTC) #18
ivoc
A few more remarks. https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1276 webrtc/modules/audio_processing/audio_processing_impl.cc:1276: AudioProcessingImpl::ApmConfig AudioProcessingImpl::GetCurrentConfig() const { Wouldn't ...
5 years, 2 months ago (2015-09-25 09:24:21 UTC) #19
minyue-webrtc
https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1276 webrtc/modules/audio_processing/audio_processing_impl.cc:1276: AudioProcessingImpl::ApmConfig AudioProcessingImpl::GetCurrentConfig() const { On 2015/09/25 09:24:21, ivoc wrote: ...
5 years, 2 months ago (2015-09-25 09:49:09 UTC) #20
ivoc
https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/debug.proto File webrtc/modules/audio_processing/debug.proto (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/debug.proto#newcode50 webrtc/modules/audio_processing/debug.proto:50: optional bool aecm_enabled = 11; On 2015/09/25 09:49:09, minyue-webrtc ...
5 years, 2 months ago (2015-09-25 10:22:35 UTC) #21
peah-webrtc
https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.h File webrtc/modules/audio_processing/audio_processing_impl.h (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.h#newcode169 webrtc/modules/audio_processing/audio_processing_impl.h:169: // AEC I think the style guide says that ...
5 years, 2 months ago (2015-09-25 10:27:38 UTC) #22
Andrew MacDonald
On 2015/09/24 12:57:14, hlundin-webrtc wrote: > I think we should move forward with this now. ...
5 years, 2 months ago (2015-09-26 00:14:55 UTC) #23
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.h File webrtc/modules/audio_processing/audio_processing_impl.h (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.h#newcode166 webrtc/modules/audio_processing/audio_processing_impl.h:166: struct ApmConfig { Why do you need this thing? ...
5 years, 2 months ago (2015-09-26 02:36:20 UTC) #24
minyue-webrtc
Hi Thanks for the review. Here is my update. https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.h File webrtc/modules/audio_processing/audio_processing_impl.h (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/audio_processing_impl.h#newcode166 webrtc/modules/audio_processing/audio_processing_impl.h:166: ...
5 years, 2 months ago (2015-09-26 16:26:44 UTC) #25
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc File webrtc/modules/audio_processing/test/audio_processing_unittest.cc (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc#newcode1747 webrtc/modules/audio_processing/test/audio_processing_unittest.cc:1747: } else if (event_msg.type() == audioproc::Event::CONFIG) { On 2015/09/26 ...
5 years, 2 months ago (2015-09-28 06:22:33 UTC) #26
minyue-webrtc
https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc File webrtc/modules/audio_processing/test/audio_processing_unittest.cc (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc#newcode1747 webrtc/modules/audio_processing/test/audio_processing_unittest.cc:1747: } else if (event_msg.type() == audioproc::Event::CONFIG) { On 2015/09/28 ...
5 years, 2 months ago (2015-09-29 04:51:49 UTC) #27
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc File webrtc/modules/audio_processing/test/audio_processing_unittest.cc (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc#newcode1813 webrtc/modules/audio_processing/test/audio_processing_unittest.cc:1813: apm_->SetExtraOptions(config); On 2015/09/29 04:51:49, minyue-webrtc wrote: > On 2015/09/28 ...
5 years, 2 months ago (2015-09-29 05:05:18 UTC) #28
minyue-webrtc
https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc File webrtc/modules/audio_processing/test/audio_processing_unittest.cc (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc#newcode1813 webrtc/modules/audio_processing/test/audio_processing_unittest.cc:1813: apm_->SetExtraOptions(config); On 2015/09/29 05:05:17, Andrew MacDonald wrote: > On ...
5 years, 2 months ago (2015-09-29 21:05:05 UTC) #29
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc File webrtc/modules/audio_processing/test/audio_processing_unittest.cc (right): https://codereview.webrtc.org/1348903004/diff/60001/webrtc/modules/audio_processing/test/audio_processing_unittest.cc#newcode1813 webrtc/modules/audio_processing/test/audio_processing_unittest.cc:1813: apm_->SetExtraOptions(config); On 2015/09/29 21:05:05, minyue-webrtc wrote: > On 2015/09/29 ...
5 years, 2 months ago (2015-09-29 23:38:49 UTC) #30
peah-webrtc
https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1286 webrtc/modules/audio_processing/audio_processing_impl.cc:1286: UPDATE_CONFIG(aec_enabled, echo_cancellation_->is_enabled()); Sorry, missed to send this before, had ...
5 years, 2 months ago (2015-09-30 13:13:54 UTC) #31
minyue-webrtc
https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1286 webrtc/modules/audio_processing/audio_processing_impl.cc:1286: UPDATE_CONFIG(aec_enabled, echo_cancellation_->is_enabled()); On 2015/09/30 13:13:54, peah-webrtc wrote: > Sorry, ...
5 years, 2 months ago (2015-09-30 18:44:52 UTC) #32
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto File webrtc/modules/audio_processing/debug.proto (right): https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto#newcode46 webrtc/modules/audio_processing/debug.proto:46: message Config { FYI: I just wanted to mention ...
5 years, 2 months ago (2015-10-01 04:37:45 UTC) #33
minyue-webrtc
https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto File webrtc/modules/audio_processing/debug.proto (right): https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto#newcode79 webrtc/modules/audio_processing/debug.proto:79: required Type type = 1; I need to mention ...
5 years, 2 months ago (2015-10-01 05:10:21 UTC) #34
peah-webrtc
https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1286 webrtc/modules/audio_processing/audio_processing_impl.cc:1286: UPDATE_CONFIG(aec_enabled, echo_cancellation_->is_enabled()); On 2015/09/30 18:44:52, minyue-webrtc wrote: > On ...
5 years, 2 months ago (2015-10-01 05:31:32 UTC) #35
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (left): https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc#oldcode45 webrtc/modules/audio_processing/audio_processing_impl.cc:45: #ifdef WEBRTC_AUDIOPROC_DEBUG_DUMP Why was this removed? https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc ...
5 years, 2 months ago (2015-10-01 06:33:28 UTC) #36
kwiberg-webrtc
https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1286 webrtc/modules/audio_processing/audio_processing_impl.cc:1286: UPDATE_CONFIG(aec_enabled, echo_cancellation_->is_enabled()); On 2015/10/01 06:33:28, Andrew MacDonald wrote: > ...
5 years, 2 months ago (2015-10-01 08:26:23 UTC) #38
ivoc
https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto File webrtc/modules/audio_processing/debug.proto (right): https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto#newcode79 webrtc/modules/audio_processing/debug.proto:79: required Type type = 1; On 2015/10/01 05:10:21, minyue-webrtc ...
5 years, 2 months ago (2015-10-01 08:55:39 UTC) #39
minyue
On 2015/10/01 08:55:39, ivoc wrote: > https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto > File webrtc/modules/audio_processing/debug.proto (right): > > https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto#newcode79 > ...
5 years, 2 months ago (2015-10-01 14:31:40 UTC) #40
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto File webrtc/modules/audio_processing/debug.proto (right): https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/debug.proto#newcode79 webrtc/modules/audio_processing/debug.proto:79: required Type type = 1; On 2015/10/01 08:55:39, ivoc ...
5 years, 2 months ago (2015-10-01 17:35:21 UTC) #41
minyue-webrtc
Thanks all for the comments! A new patch set is formed, mainly removing macros. Other ...
5 years, 2 months ago (2015-10-01 20:18:26 UTC) #42
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/test/unpack.cc File webrtc/modules/audio_processing/test/unpack.cc (right): https://codereview.webrtc.org/1348903004/diff/100001/webrtc/modules/audio_processing/test/unpack.cc#newcode237 webrtc/modules/audio_processing/test/unpack.cc:237: PRINT_CONFIG(aec_enabled, "AEC enabled"); On 2015/10/01 20:18:26, minyue-webrtc wrote: > ...
5 years, 2 months ago (2015-10-02 00:37:20 UTC) #43
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1282 webrtc/modules/audio_processing/audio_processing_impl.cc:1282: bool AudioProcessingImpl::UpdateCurrentConfig() { On 2015/10/01 20:18:26, minyue-webrtc wrote: > ...
5 years, 2 months ago (2015-10-02 02:15:19 UTC) #44
minyue-webrtc
https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1282 webrtc/modules/audio_processing/audio_processing_impl.cc:1282: bool AudioProcessingImpl::UpdateCurrentConfig() { On 2015/10/02 02:15:19, Andrew MacDonald wrote: ...
5 years, 2 months ago (2015-10-02 05:29:01 UTC) #45
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1282 webrtc/modules/audio_processing/audio_processing_impl.cc:1282: bool AudioProcessingImpl::UpdateCurrentConfig() { On 2015/10/02 05:29:01, minyue-webrtc wrote: > ...
5 years, 2 months ago (2015-10-02 06:07:39 UTC) #46
peah-webrtc
https://codereview.webrtc.org/1348903004/diff/120001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/120001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1271 webrtc/modules/audio_processing/audio_processing_impl.cc:1271: bool AudioProcessingImpl::UpdateCurrentConfig() { This function became very long (for ...
5 years, 2 months ago (2015-10-02 08:34:28 UTC) #47
minyue-webrtc
On 2015/10/02 06:07:39, Andrew MacDonald wrote: > https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc > File webrtc/modules/audio_processing/audio_processing_impl.cc (right): > > https://codereview.webrtc.org/1348903004/diff/80001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1282 ...
5 years, 2 months ago (2015-10-02 08:58:24 UTC) #49
minyue-webrtc
Hi, Andrew's suggestion is formed into patch set 7. Patch set 6 had a wrong ...
5 years, 2 months ago (2015-10-02 09:01:42 UTC) #50
peah-webrtc
lgtm, I don't know the protobuf recording functionality well enough yet though to vouch for ...
5 years, 2 months ago (2015-10-02 09:18:29 UTC) #51
Andrew MacDonald
lgtm, thanks for all the changes Minyue. But we should sort out the new AGC ...
5 years, 2 months ago (2015-10-02 19:04:02 UTC) #53
Andrew MacDonald
Switching to Alex's webrtc address.
5 years, 2 months ago (2015-10-02 19:04:36 UTC) #55
turajs
https://codereview.webrtc.org/1348903004/diff/180001/webrtc/modules/audio_processing/debug.proto File webrtc/modules/audio_processing/debug.proto (right): https://codereview.webrtc.org/1348903004/diff/180001/webrtc/modules/audio_processing/debug.proto#newcode60 webrtc/modules/audio_processing/debug.proto:60: optional bool agc_experiment_enabled = 10; On 2015/10/02 19:04:02, Andrew ...
5 years, 2 months ago (2015-10-02 19:16:37 UTC) #57
aluebs-webrtc
https://codereview.webrtc.org/1348903004/diff/180001/webrtc/modules/audio_processing/debug.proto File webrtc/modules/audio_processing/debug.proto (right): https://codereview.webrtc.org/1348903004/diff/180001/webrtc/modules/audio_processing/debug.proto#newcode60 webrtc/modules/audio_processing/debug.proto:60: optional bool agc_experiment_enabled = 10; On 2015/10/02 19:04:02, Andrew ...
5 years, 2 months ago (2015-10-02 19:16:37 UTC) #58
minyue-webrtc
On 2015/10/02 19:04:02, Andrew MacDonald wrote: > lgtm, thanks for all the changes Minyue. > ...
5 years, 2 months ago (2015-10-02 19:55:42 UTC) #60
minyue-webrtc
The renaming is made. Please see if it is proper. https://codereview.webrtc.org/1348903004/diff/180001/webrtc/modules/audio_processing/debug.proto File webrtc/modules/audio_processing/debug.proto (right): https://codereview.webrtc.org/1348903004/diff/180001/webrtc/modules/audio_processing/debug.proto#newcode60 ...
5 years, 2 months ago (2015-10-02 19:59:59 UTC) #61
Andrew MacDonald
lgtm https://codereview.webrtc.org/1348903004/diff/180001/webrtc/modules/audio_processing/debug.proto File webrtc/modules/audio_processing/debug.proto (right): https://codereview.webrtc.org/1348903004/diff/180001/webrtc/modules/audio_processing/debug.proto#newcode60 webrtc/modules/audio_processing/debug.proto:60: optional bool agc_experiment_enabled = 10; On 2015/10/02 19:59:59, ...
5 years, 2 months ago (2015-10-02 21:41:57 UTC) #62
Andrew MacDonald
More nits. https://codereview.webrtc.org/1348903004/diff/220001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/220001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1256 webrtc/modules/audio_processing/audio_processing_impl.cc:1256: // Acoustic echo canceler. Nit: I think ...
5 years, 2 months ago (2015-10-02 21:46:04 UTC) #63
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/220001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/220001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1266 webrtc/modules/audio_processing/audio_processing_impl.cc:1266: // Mobile Acoustic echo canceler. On 2015/10/02 21:46:04, Andrew ...
5 years, 2 months ago (2015-10-02 21:46:57 UTC) #64
minyue-webrtc
https://codereview.webrtc.org/1348903004/diff/220001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/220001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1256 webrtc/modules/audio_processing/audio_processing_impl.cc:1256: // Acoustic echo canceler. On 2015/10/02 21:46:04, Andrew MacDonald ...
5 years, 2 months ago (2015-10-02 21:57:34 UTC) #65
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1348903004/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1348903004/240001
5 years, 2 months ago (2015-10-02 21:58:04 UTC) #68
Andrew MacDonald
https://codereview.webrtc.org/1348903004/diff/240001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/240001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1275 webrtc/modules/audio_processing/audio_processing_impl.cc:1275: config.set_noise_robust_enabled(use_new_agc_); Did you build this? This is using the ...
5 years, 2 months ago (2015-10-02 22:00:01 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: mac_x64_rel on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/mac_x64_rel/builds/9598)
5 years, 2 months ago (2015-10-02 22:00:09 UTC) #71
minyue-webrtc
https://codereview.webrtc.org/1348903004/diff/240001/webrtc/modules/audio_processing/audio_processing_impl.cc File webrtc/modules/audio_processing/audio_processing_impl.cc (right): https://codereview.webrtc.org/1348903004/diff/240001/webrtc/modules/audio_processing/audio_processing_impl.cc#newcode1275 webrtc/modules/audio_processing/audio_processing_impl.cc:1275: config.set_noise_robust_enabled(use_new_agc_); On 2015/10/02 22:00:01, Andrew MacDonald wrote: > Did ...
5 years, 2 months ago (2015-10-02 22:01:41 UTC) #72
minyue-webrtc
should work now
5 years, 2 months ago (2015-10-02 22:04:24 UTC) #73
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1348903004/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1348903004/260001
5 years, 2 months ago (2015-10-02 22:05:27 UTC) #76
minyue-webrtc
Committed patchset #11 (id:260001) manually as 13b96ba90f72164134019cbfc07d4a47cf1fd091 (presubmit successful).
5 years, 2 months ago (2015-10-02 22:39:34 UTC) #77
commit-bot: I haz the power
5 years, 2 months ago (2015-10-02 22:39:39 UTC) #78
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/13b96ba90f72164134019cbfc07d4a47cf1fd091
Cr-Commit-Position: refs/heads/master@{#10155}

Powered by Google App Engine
This is Rietveld 408576698