Chromium Code Reviews| Index: webrtc/modules/audio_processing/aec/include/echo_cancellation.h |
| diff --git a/webrtc/modules/audio_processing/aec/include/echo_cancellation.h b/webrtc/modules/audio_processing/aec/include/echo_cancellation.h |
| index 6914ed1a9e77971df3f596aa030ab58a1aa72845..8467c18a83adc1e5a3940599e4ef6d39958d3a19 100644 |
| --- a/webrtc/modules/audio_processing/aec/include/echo_cancellation.h |
| +++ b/webrtc/modules/audio_processing/aec/include/echo_cancellation.h |
| @@ -64,19 +64,10 @@ extern "C" { |
| /* |
| * Allocates the memory needed by the AEC. The memory needs to be initialized |
| - * separately using the WebRtcAec_Init() function. |
| - * |
| - * Inputs Description |
| - * ------------------------------------------------------------------- |
| - * void** aecInst Pointer to the AEC instance to be created |
| - * and initialized |
| - * |
| - * Outputs Description |
| - * ------------------------------------------------------------------- |
| - * int32_t return 0: OK |
| - * -1: error |
| + * separately using the WebRtcAec_Init() function. Returns a pointer to the |
| + * object. |
|
kwiberg-webrtc
2015/06/10 09:31:43
Or NULL on error.
bjornv1
2015/06/10 19:03:04
Done
|
| */ |
| -int32_t WebRtcAec_Create(void** aecInst); |
| +void* WebRtcAec_Create(); |
| /* |
| * This function releases the memory allocated by WebRtcAec_Create(). |