| 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 extern "C" { | 
|   15 #include "webrtc/common_audio/ring_buffer.h" |   15 #include "webrtc/common_audio/ring_buffer.h" | 
|   16 } |   16 } | 
 |   17 #include "webrtc/base/constructormagic.h" | 
|   17 #include "webrtc/common_audio/wav_file.h" |   18 #include "webrtc/common_audio/wav_file.h" | 
|   18 #include "webrtc/modules/audio_processing/aec/aec_common.h" |   19 #include "webrtc/modules/audio_processing/aec/aec_common.h" | 
|   19 #include "webrtc/modules/audio_processing/aec/aec_core.h" |   20 #include "webrtc/modules/audio_processing/aec/aec_core.h" | 
|   20 #include "webrtc/modules/audio_processing/utility/block_mean_calculator.h" |   21 #include "webrtc/modules/audio_processing/utility/block_mean_calculator.h" | 
|   21 #include "webrtc/typedefs.h" |   22 #include "webrtc/typedefs.h" | 
|   22  |   23  | 
|   23 namespace webrtc { |   24 namespace webrtc { | 
|   24  |   25  | 
|   25 // Number of partitions for the extended filter mode. The first one is an enum |   26 // Number of partitions for the extended filter mode. The first one is an enum | 
|   26 // to be used in array declarations, as it represents the maximum filter length. |   27 // to be used in array declarations, as it represents the maximum filter length. | 
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  247 typedef void (*WebRtcAecStoreAsComplex)(const float* data, |  248 typedef void (*WebRtcAecStoreAsComplex)(const float* data, | 
|  248                                         float data_complex[2][PART_LEN1]); |  249                                         float data_complex[2][PART_LEN1]); | 
|  249 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex; |  250 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex; | 
|  250  |  251  | 
|  251 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x); |  252 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x); | 
|  252 extern WebRtcAecWindowData WebRtcAec_WindowData; |  253 extern WebRtcAecWindowData WebRtcAec_WindowData; | 
|  253  |  254  | 
|  254 }  // namespace webrtc |  255 }  // namespace webrtc | 
|  255  |  256  | 
|  256 #endif  // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ |  257 #endif  // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ | 
| OLD | NEW |