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 4354cc625301110bfca8825c7400a7f23fe0fb67..77da9210467a677f75468690b621e333c4372eb9 100644 |
| --- a/webrtc/modules/audio_processing/aec/aec_core_internal.h |
| +++ b/webrtc/modules/audio_processing/aec/aec_core_internal.h |
| @@ -224,11 +224,15 @@ typedef void (*WebRtcAecFilterAdaptation)( |
| float e_fft[2][PART_LEN1], |
| float h_fft_buf[2][kExtendedNumPartitions * PART_LEN1]); |
| extern WebRtcAecFilterAdaptation WebRtcAec_FilterAdaptation; |
| -typedef void (*WebRtcAecOverdriveAndSuppress)(float overdrive_scaling, |
| - float hNl[PART_LEN1], |
| - const float hNlFb, |
| - float efw[2][PART_LEN1]); |
| -extern WebRtcAecOverdriveAndSuppress WebRtcAec_OverdriveAndSuppress; |
| + |
| +typedef void (*WebRtcAecOverdrive)(float overdrive_scaling, |
| + const float hNlFb, |
| + float hNl[PART_LEN1]); |
| +extern WebRtcAecOverdrive WebRtcAec_Overdrive; |
| + |
| +typedef void (*WebRtcAecSuppress)(float hNl[PART_LEN1], |
|
hlundin-webrtc
2016/05/03 08:22:29
hNl const here too. (And all other places that fol
peah-webrtc
2016/05/07 21:26:15
Done.
|
| + float efw[2][PART_LEN1]); |
| +extern WebRtcAecSuppress WebRtcAec_Suppress; |
| typedef void (*WebRtcAecComputeCoherence)(const CoherenceState* coherence_state, |
| float* cohde, |