Chromium Code Reviews| 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 40a04c0a3f3cd714e731097e5549554ea37d0f3a..9dd457ef0c2d9c32a305564ff7fa0f0655aa6966 100644 |
| --- a/webrtc/modules/audio_processing/aec/aec_core_internal.h |
| +++ b/webrtc/modules/audio_processing/aec/aec_core_internal.h |
| @@ -180,12 +180,15 @@ extern WebRtcAecFilterFar WebRtcAec_FilterFar; |
| typedef void (*WebRtcAecScaleErrorSignal)(int extended_filter_enabled, |
| float normal_mu, |
| float normal_error_threshold, |
| - float* xPow, |
| + float xPow[PART_LEN1], |
|
hlundin-webrtc
2015/11/20 11:55:20
Can x_pow be made const?
hlundin-webrtc
2015/11/20 11:55:20
x_pow
peah-webrtc
2015/11/24 13:03:01
Done.
peah-webrtc
2015/11/24 13:03:01
Done.
|
| float ef[2][PART_LEN1]); |
| extern WebRtcAecScaleErrorSignal WebRtcAec_ScaleErrorSignal; |
| -typedef void (*WebRtcAecFilterAdaptation)(AecCore* aec, |
| - float* fft, |
| - float ef[2][PART_LEN1]); |
| +typedef void (*WebRtcAecFilterAdaptation)( |
| + int num_partitions, |
| + int xfBufBlockPos, |
| + float xfBuf[2][kExtendedNumPartitions * PART_LEN1], |
| + float ef[2][PART_LEN1], |
| + float wfBuf[2][kExtendedNumPartitions * PART_LEN1]); |
| extern WebRtcAecFilterAdaptation WebRtcAec_FilterAdaptation; |
| typedef void (*WebRtcAecOverdriveAndSuppress)(AecCore* aec, |
| float hNl[PART_LEN1], |