OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC_ECHO_CANCELLATION_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC_ECHO_CANCELLATION_H_ |
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC_ECHO_CANCELLATION_H_ | 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC_ECHO_CANCELLATION_H_ |
13 | 13 |
14 #include <stddef.h> | 14 #include <stddef.h> |
15 | 15 |
16 #include "webrtc/typedefs.h" | 16 #include "webrtc/typedefs.h" |
17 | 17 |
| 18 namespace webrtc { |
| 19 |
18 // Errors | 20 // Errors |
19 #define AEC_UNSPECIFIED_ERROR 12000 | 21 #define AEC_UNSPECIFIED_ERROR 12000 |
20 #define AEC_UNSUPPORTED_FUNCTION_ERROR 12001 | 22 #define AEC_UNSUPPORTED_FUNCTION_ERROR 12001 |
21 #define AEC_UNINITIALIZED_ERROR 12002 | 23 #define AEC_UNINITIALIZED_ERROR 12002 |
22 #define AEC_NULL_POINTER_ERROR 12003 | 24 #define AEC_NULL_POINTER_ERROR 12003 |
23 #define AEC_BAD_PARAMETER_ERROR 12004 | 25 #define AEC_BAD_PARAMETER_ERROR 12004 |
24 | 26 |
25 // Warnings | 27 // Warnings |
26 #define AEC_BAD_PARAMETER_WARNING 12050 | 28 #define AEC_BAD_PARAMETER_WARNING 12050 |
27 | 29 |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 // Returns a pointer to the low level AEC handle. | 229 // Returns a pointer to the low level AEC handle. |
228 // | 230 // |
229 // Input: | 231 // Input: |
230 // - handle : Pointer to the AEC instance. | 232 // - handle : Pointer to the AEC instance. |
231 // | 233 // |
232 // Return value: | 234 // Return value: |
233 // - AecCore pointer : NULL for error. | 235 // - AecCore pointer : NULL for error. |
234 // | 236 // |
235 struct AecCore* WebRtcAec_aec_core(void* handle); | 237 struct AecCore* WebRtcAec_aec_core(void* handle); |
236 | 238 |
| 239 } // namespace webrtc |
| 240 |
237 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_ECHO_CANCELLATION_H_ | 241 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_ECHO_CANCELLATION_H_ |
OLD | NEW |