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

Issue 2433153003: New statistics interface for APM (Closed)

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

Description

New statistics interface for APM This adds functions to enable and retrieve statistics from APM. These functions are not yet called, which will happen in a follow-up CL. BUG=webrtc:6525 Committed: https://crrev.com/8b8d3e4c30e8ea3846b58dfd36d1fd35a7799df4 Cr-Commit-Position: refs/heads/master@{#14810}

Patch Set 1 #

Total comments: 10

Patch Set 2 : Review comments. #

Total comments: 11

Patch Set 3 : More comments. #

Total comments: 1

Patch Set 4 : Added const. #

Patch Set 5 : Rebase. #

Patch Set 6 : Fixed unittest that checks that EC metrics are disabled. #

Patch Set 7 : Fix for Android crashes. #

Patch Set 8 : Rebase. #

Patch Set 9 : Fix for mock #

Patch Set 10 : Another fix for a failing testcase. #

Patch Set 11 : Another test fix. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+132 lines, -26 lines) Patch
M webrtc/modules/audio_processing/audio_processing_impl.h View 1 2 3 4 5 6 7 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/audio_processing/audio_processing_impl.cc View 1 2 3 4 5 6 7 2 chunks +20 lines, -0 lines 0 comments Download
M webrtc/modules/audio_processing/audio_processing_unittest.cc View 1 2 3 4 5 6 7 8 9 3 chunks +13 lines, -7 lines 0 comments Download
M webrtc/modules/audio_processing/echo_cancellation_impl.h View 1 2 3 4 2 chunks +14 lines, -6 lines 0 comments Download
M webrtc/modules/audio_processing/echo_cancellation_impl.cc View 1 2 3 4 5 6 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/audio_processing/include/audio_processing.h View 1 2 3 4 chunks +71 lines, -8 lines 0 comments Download
M webrtc/modules/audio_processing/include/mock_audio_processing.h View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/voice_engine/test/auto_test/extended/ec_metrics_test.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +9 lines, -3 lines 0 comments Download

Messages

Total messages: 42 (17 generated)
ivoc
Hi guys, please have a look at this CL to add a unified function to ...
4 years, 2 months ago (2016-10-20 16:27:45 UTC) #2
peah-webrtc
Nice!!! lgtm but with one question for the author as well as the other reviewers ...
4 years, 2 months ago (2016-10-21 07:02:45 UTC) #3
the sun
https://codereview.chromium.org/2433153003/diff/1/webrtc/modules/audio_processing/audio_processing_impl.h File webrtc/modules/audio_processing/audio_processing_impl.h (right): https://codereview.chromium.org/2433153003/diff/1/webrtc/modules/audio_processing/audio_processing_impl.h#newcode118 webrtc/modules/audio_processing/audio_processing_impl.h:118: void GetStatistics(AudioProcessingStatistics* stats) const override; How about just returning ...
4 years, 2 months ago (2016-10-24 08:26:58 UTC) #4
peah-webrtc
https://codereview.chromium.org/2433153003/diff/1/webrtc/modules/audio_processing/include/audio_processing.h File webrtc/modules/audio_processing/include/audio_processing.h (right): https://codereview.chromium.org/2433153003/diff/1/webrtc/modules/audio_processing/include/audio_processing.h#newcode509 webrtc/modules/audio_processing/include/audio_processing.h:509: virtual void SetStatisticsEnabled(bool enabled) = 0; On 2016/10/24 08:26:58, ...
4 years, 2 months ago (2016-10-24 09:44:38 UTC) #5
the sun
On 2016/10/24 09:44:38, peah-webrtc wrote: > https://codereview.chromium.org/2433153003/diff/1/webrtc/modules/audio_processing/include/audio_processing.h > File webrtc/modules/audio_processing/include/audio_processing.h (right): > > https://codereview.chromium.org/2433153003/diff/1/webrtc/modules/audio_processing/include/audio_processing.h#newcode509 > ...
4 years, 2 months ago (2016-10-24 10:45:28 UTC) #6
ivoc
Thanks for the comments. I removed the enable/disable function, so stats are now always enabled. ...
4 years, 1 month ago (2016-10-24 14:15:49 UTC) #7
the sun
lgtm % comments https://codereview.chromium.org/2433153003/diff/20001/webrtc/modules/audio_processing/include/audio_processing.h File webrtc/modules/audio_processing/include/audio_processing.h (right): https://codereview.chromium.org/2433153003/diff/20001/webrtc/modules/audio_processing/include/audio_processing.h#newcode481 webrtc/modules/audio_processing/include/audio_processing.h:481: struct ValueStatistic { How about "Stat"? ...
4 years, 1 month ago (2016-10-24 15:15:44 UTC) #8
ivoc
https://codereview.chromium.org/2433153003/diff/20001/webrtc/modules/audio_processing/include/audio_processing.h File webrtc/modules/audio_processing/include/audio_processing.h (right): https://codereview.chromium.org/2433153003/diff/20001/webrtc/modules/audio_processing/include/audio_processing.h#newcode481 webrtc/modules/audio_processing/include/audio_processing.h:481: struct ValueStatistic { On 2016/10/24 15:15:43, the sun wrote: ...
4 years, 1 month ago (2016-10-24 15:50:42 UTC) #9
the sun
https://codereview.webrtc.org/2433153003/diff/20001/webrtc/modules/audio_processing/include/audio_processing.h File webrtc/modules/audio_processing/include/audio_processing.h (right): https://codereview.webrtc.org/2433153003/diff/20001/webrtc/modules/audio_processing/include/audio_processing.h#newcode483 webrtc/modules/audio_processing/include/audio_processing.h:483: ValueStatistic(ValueStatistic& other) { On 2016/10/24 15:50:42, ivoc wrote: > ...
4 years, 1 month ago (2016-10-25 06:44:12 UTC) #10
the sun
https://codereview.webrtc.org/2433153003/diff/40001/webrtc/modules/audio_processing/include/audio_processing.h File webrtc/modules/audio_processing/include/audio_processing.h (right): https://codereview.webrtc.org/2433153003/diff/40001/webrtc/modules/audio_processing/include/audio_processing.h#newcode482 webrtc/modules/audio_processing/include/audio_processing.h:482: void Set(Statistic& other) { const &
4 years, 1 month ago (2016-10-25 06:45:31 UTC) #11
ivoc
https://codereview.webrtc.org/2433153003/diff/20001/webrtc/modules/audio_processing/include/audio_processing.h File webrtc/modules/audio_processing/include/audio_processing.h (right): https://codereview.webrtc.org/2433153003/diff/20001/webrtc/modules/audio_processing/include/audio_processing.h#newcode483 webrtc/modules/audio_processing/include/audio_processing.h:483: ValueStatistic(ValueStatistic& other) { On 2016/10/25 06:44:12, the sun wrote: ...
4 years, 1 month ago (2016-10-25 09:38:46 UTC) #12
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/2433153003/80001
4 years, 1 month ago (2016-10-25 11:47:14 UTC) #15
commit-bot: I haz the power
Try jobs failed on following builders: linux_baremetal on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/linux_baremetal/builds/15263) mac_baremetal on master.tryserver.webrtc (JOB_FAILED, ...
4 years, 1 month ago (2016-10-25 11:58:02 UTC) #17
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/2433153003/100001
4 years, 1 month ago (2016-10-25 12:18:47 UTC) #20
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_rel on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_arm64_rel/builds/12209) linux_compile_dbg on master.tryserver.webrtc (JOB_FAILED, ...
4 years, 1 month ago (2016-10-25 12:30:59 UTC) #22
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/2433153003/100001
4 years, 1 month ago (2016-10-25 12:59:15 UTC) #24
commit-bot: I haz the power
Try jobs failed on following builders: android_dbg on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_dbg/builds/17938)
4 years, 1 month ago (2016-10-25 13:09:56 UTC) #26
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/2433153003/180001
4 years, 1 month ago (2016-10-27 10:35:42 UTC) #29
commit-bot: I haz the power
Try jobs failed on following builders: win_x64_dbg on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/win_x64_dbg/builds/2499)
4 years, 1 month ago (2016-10-27 10:46:14 UTC) #31
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/2433153003/200001
4 years, 1 month ago (2016-10-27 13:45:03 UTC) #34
commit-bot: I haz the power
Try jobs failed on following builders: win_x64_dbg on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/win_x64_dbg/builds/2524)
4 years, 1 month ago (2016-10-27 14:13:21 UTC) #36
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/2433153003/200001
4 years, 1 month ago (2016-10-28 08:23:44 UTC) #38
commit-bot: I haz the power
Committed patchset #11 (id:200001)
4 years, 1 month ago (2016-10-28 08:32:24 UTC) #39
commit-bot: I haz the power
Patchset 11 (id:??) landed as https://crrev.com/8b8d3e4c30e8ea3846b58dfd36d1fd35a7799df4 Cr-Commit-Position: refs/heads/master@{#14810}
4 years, 1 month ago (2016-10-28 08:32:33 UTC) #41
ivoc
4 years, 1 month ago (2016-10-28 10:29:14 UTC) #42
Message was sent while issue was closed.
A revert of this CL (patchset #11 id:200001) has been created in
https://codereview.webrtc.org/2456333002/ by ivoc@webrtc.org.

The reason for reverting is: This CL breaks internal dependencies..

Powered by Google App Engine
This is Rietveld 408576698