| 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 881cac6d4776ff26d67073c74805035b7cabd00b..9ec65991ad33bac6445b9812339f0b5b677394b9 100644
|
| --- a/webrtc/modules/audio_processing/aec/aec_core_internal.h
|
| +++ b/webrtc/modules/audio_processing/aec/aec_core_internal.h
|
| @@ -205,10 +205,21 @@ extern WebRtcAecComfortNoise WebRtcAec_ComfortNoise;
|
|
|
| typedef void (*WebRtcAecSubBandCoherence)(AecCore* aec,
|
| float efw[2][PART_LEN1],
|
| + float dfw[2][PART_LEN1],
|
| float xfw[2][PART_LEN1],
|
| float* fft,
|
| float* cohde,
|
| float* cohxd);
|
| extern WebRtcAecSubBandCoherence WebRtcAec_SubbandCoherence;
|
|
|
| +typedef int (*WebRtcAecPartitionDelay)(const AecCore* aec);
|
| +extern WebRtcAecPartitionDelay WebRtcAec_PartitionDelay;
|
| +
|
| +typedef void (*WebRtcAecStoreAsComplex)(const float* data,
|
| + float data_complex[2][PART_LEN1]);
|
| +extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex;
|
| +
|
| +typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x);
|
| +extern WebRtcAecWindowData WebRtcAec_WindowData;
|
| +
|
| #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_
|
|
|