| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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_AEC_CORE_INTERNAL_H_ | 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ | 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ |
| 13 | 13 |
| 14 extern "C" { |
| 14 #include "webrtc/common_audio/ring_buffer.h" | 15 #include "webrtc/common_audio/ring_buffer.h" |
| 16 } |
| 15 #include "webrtc/common_audio/wav_file.h" | 17 #include "webrtc/common_audio/wav_file.h" |
| 16 #include "webrtc/modules/audio_processing/aec/aec_common.h" | 18 #include "webrtc/modules/audio_processing/aec/aec_common.h" |
| 17 #include "webrtc/modules/audio_processing/aec/aec_core.h" | 19 #include "webrtc/modules/audio_processing/aec/aec_core.h" |
| 18 #include "webrtc/typedefs.h" | 20 #include "webrtc/typedefs.h" |
| 19 | 21 |
| 20 // Number of partitions for the extended filter mode. The first one is an enum | 22 // Number of partitions for the extended filter mode. The first one is an enum |
| 21 // to be used in array declarations, as it represents the maximum filter length. | 23 // to be used in array declarations, as it represents the maximum filter length. |
| 22 enum { kExtendedNumPartitions = 32 }; | 24 enum { kExtendedNumPartitions = 32 }; |
| 23 static const int kNormalNumPartitions = 12; | 25 static const int kNormalNumPartitions = 12; |
| 24 | 26 |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 extern WebRtcAecPartitionDelay WebRtcAec_PartitionDelay; | 221 extern WebRtcAecPartitionDelay WebRtcAec_PartitionDelay; |
| 220 | 222 |
| 221 typedef void (*WebRtcAecStoreAsComplex)(const float* data, | 223 typedef void (*WebRtcAecStoreAsComplex)(const float* data, |
| 222 float data_complex[2][PART_LEN1]); | 224 float data_complex[2][PART_LEN1]); |
| 223 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex; | 225 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex; |
| 224 | 226 |
| 225 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x); | 227 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x); |
| 226 extern WebRtcAecWindowData WebRtcAec_WindowData; | 228 extern WebRtcAecWindowData WebRtcAec_WindowData; |
| 227 | 229 |
| 228 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ | 230 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ |
| OLD | NEW |