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..e49a0847e03a96630479f24bedd5559aae651441 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 or NULL on error. |
*/ |
-int32_t WebRtcAec_Create(void** aecInst); |
+void* WebRtcAec_Create(); |
/* |
* This function releases the memory allocated by WebRtcAec_Create(). |