commit | 83c4a02b76c8f4edac4b85ada9136d1e053a68f8 | [log] [tgz] |
---|---|---|
author | Per Åhgren <peah@webrtc.org> | Mon Nov 27 12:07:09 2017 +0100 |
committer | Commit Bot <commit-bot@chromium.org> | Mon Nov 27 12:52:42 2017 +0000 |
tree | 38d505840af34d35ad5490891ff3b8f1bf920682 | |
parent | 6a0345b3b01986a8b095620165df58952033baa9 [diff] [blame] |
Added metric for the delay in AEC3. Bug: webrtc:8569 Change-Id: I659049a411654bd3a252ab29008fac467f903efd Reviewed-on: https://webrtc-review.googlesource.com/25600 Commit-Queue: Per Åhgren <peah@webrtc.org> Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20892}
diff --git a/modules/audio_processing/include/audio_processing_statistics.h b/modules/audio_processing/include/audio_processing_statistics.h index 7dbc907..83c9d99 100644 --- a/modules/audio_processing/include/audio_processing_statistics.h +++ b/modules/audio_processing/include/audio_processing_statistics.h
@@ -44,6 +44,11 @@ rtc::Optional<double> residual_echo_likelihood; // Maximum residual echo likelihood from the last time period. rtc::Optional<double> residual_echo_likelihood_recent_max; + + // The instantaneous delay estimate produced in the AEC. The unit is in + // milliseconds and the value is the instantaneous value at the time of the + // call to |GetStatistics()|. + int delay_ms; }; } // namespace webrtc