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 // Performs echo control (suppression) with fft routines in fixed-point. | 11 // Performs echo control (suppression) with fft routines in fixed-point. |
12 | 12 |
13 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AECM_AECM_CORE_H_ | 13 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AECM_AECM_CORE_H_ |
14 #define WEBRTC_MODULES_AUDIO_PROCESSING_AECM_AECM_CORE_H_ | 14 #define WEBRTC_MODULES_AUDIO_PROCESSING_AECM_AECM_CORE_H_ |
15 | 15 |
16 #include "webrtc/common_audio/ring_buffer.h" | |
17 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" | 16 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" |
18 #include "webrtc/modules/audio_processing/aecm/aecm_defines.h" | 17 #include "webrtc/modules/audio_processing/aecm/aecm_defines.h" |
| 18 #include "webrtc/modules/audio_processing/utility/ring_buffer.h" |
19 #include "webrtc/typedefs.h" | 19 #include "webrtc/typedefs.h" |
20 | 20 |
21 #ifdef _MSC_VER // visual c++ | 21 #ifdef _MSC_VER // visual c++ |
22 #define ALIGN8_BEG __declspec(align(8)) | 22 #define ALIGN8_BEG __declspec(align(8)) |
23 #define ALIGN8_END | 23 #define ALIGN8_END |
24 #else // gcc or icc | 24 #else // gcc or icc |
25 #define ALIGN8_BEG | 25 #define ALIGN8_BEG |
26 #define ALIGN8_END __attribute__((aligned(8))) | 26 #define ALIGN8_END __attribute__((aligned(8))) |
27 #endif | 27 #endif |
28 | 28 |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 #if defined(MIPS_DSP_R1_LE) | 425 #if defined(MIPS_DSP_R1_LE) |
426 void WebRtcAecm_StoreAdaptiveChannel_mips(AecmCore* aecm, | 426 void WebRtcAecm_StoreAdaptiveChannel_mips(AecmCore* aecm, |
427 const uint16_t* far_spectrum, | 427 const uint16_t* far_spectrum, |
428 int32_t* echo_est); | 428 int32_t* echo_est); |
429 | 429 |
430 void WebRtcAecm_ResetAdaptiveChannel_mips(AecmCore* aecm); | 430 void WebRtcAecm_ResetAdaptiveChannel_mips(AecmCore* aecm); |
431 #endif | 431 #endif |
432 #endif | 432 #endif |
433 | 433 |
434 #endif | 434 #endif |
OLD | NEW |