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 9ec65991ad33bac6445b9812339f0b5b677394b9..dbf9600b9223b19e7b07c6f4ec86b3d50cc0e0e1 100644 |
--- a/webrtc/modules/audio_processing/aec/aec_core_internal.h |
+++ b/webrtc/modules/audio_processing/aec/aec_core_internal.h |
@@ -152,6 +152,10 @@ struct AecCore { |
// Runtime selection of number of filter partitions. |
int num_partitions; |
+ // Flag that extreme filter divergence has been detected by the Echo |
+ // Suppressor. |
+ int esup_detected_extreme_filter_divergence; |
minyue-webrtc
2015/12/04 10:11:39
what is esup_?
extreme_filter_divergence may be c
hlundin-webrtc
2015/12/04 10:27:55
I guess esup_ is echo suppressor. But unless we ha
peah-webrtc
2015/12/04 22:11:48
Agree! Will change.
Done.
peah-webrtc
2015/12/04 22:11:48
True, I will change that!
Done.
|
+ |
#ifdef WEBRTC_AEC_DEBUG_DUMP |
// Sequence number of this AEC instance, so that different instances can |
// choose different dump file names. |
@@ -209,7 +213,8 @@ typedef void (*WebRtcAecSubBandCoherence)(AecCore* aec, |
float xfw[2][PART_LEN1], |
float* fft, |
float* cohde, |
- float* cohxd); |
+ float* cohxd, |
+ int* const extreme_filter_divergence); |
extern WebRtcAecSubBandCoherence WebRtcAec_SubbandCoherence; |
typedef int (*WebRtcAecPartitionDelay)(const AecCore* aec); |