| Index: webrtc/modules/audio_processing/aec/aec_core.h
|
| diff --git a/webrtc/modules/audio_processing/aec/aec_core.h b/webrtc/modules/audio_processing/aec/aec_core.h
|
| index 25305275609ee836d3a4deee69814478b883bdcd..241f077524cbfe84a01acd354ccb8f0fe5a8194d 100644
|
| --- a/webrtc/modules/audio_processing/aec/aec_core.h
|
| +++ b/webrtc/modules/audio_processing/aec/aec_core.h
|
| @@ -15,6 +15,8 @@
|
| #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_H_
|
| #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_H_
|
|
|
| +#include <stddef.h>
|
| +
|
| #include "webrtc/typedefs.h"
|
|
|
| #define FRAME_LEN 80
|
| @@ -65,8 +67,8 @@ void WebRtcAec_InitAec_neon(void);
|
| void WebRtcAec_BufferFarendPartition(AecCore* aec, const float* farend);
|
| void WebRtcAec_ProcessFrames(AecCore* aec,
|
| const float* const* nearend,
|
| - int num_bands,
|
| - int num_samples,
|
| + size_t num_bands,
|
| + size_t num_samples,
|
| int knownDelay,
|
| float* const* out);
|
|
|
|
|