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

Unified Diff: webrtc/modules/audio_processing/aec/aec_core_internal.h

Issue 1739993003: Adding fraction of filter divergence in AEC metrics. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: addressing Per's comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/aec/aec_core_internal.h
diff --git a/webrtc/modules/audio_processing/aec/aec_core_internal.h b/webrtc/modules/audio_processing/aec/aec_core_internal.h
index 810d517834fe07d31793d8dfb89cc686a64ef4bf..c43811aa953875f5beebe4aca533bcbb0b1e655e 100644
--- a/webrtc/modules/audio_processing/aec/aec_core_internal.h
+++ b/webrtc/modules/audio_processing/aec/aec_core_internal.h
@@ -11,12 +11,15 @@
#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_
#define WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_
+#include <memory>
+
extern "C" {
#include "webrtc/common_audio/ring_buffer.h"
}
#include "webrtc/common_audio/wav_file.h"
#include "webrtc/modules/audio_processing/aec/aec_common.h"
#include "webrtc/modules/audio_processing/aec/aec_core.h"
+#include "webrtc/modules/audio_processing/utility/mean_calculator.h"
#include "webrtc/typedefs.h"
namespace webrtc {
@@ -120,6 +123,7 @@ struct AecCore {
Stats erle;
Stats aNlp;
Stats rerl;
+ std::unique_ptr<webrtc::MeanCalculator> fraction_filter_divergent;
tlegrand-webrtc 2016/03/17 12:28:39 Is webrtc:: needed? Maybe a better name is just f
minyue-webrtc 2016/04/03 21:42:06 "divergent" was Karl's suggestion. I think it work
// Quantities to control H band scaling for SWB input
int freq_avg_ic; // initial bin for averaging nlp gain

Powered by Google App Engine
This is Rietveld 408576698