Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: webrtc/modules/audio_processing/aec/aec_core_internal.h

Issue 1766663002: Added namespaces in the newly C++ified AEC code (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase with latest master Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/common_audio/wav_file.h" 17 #include "webrtc/common_audio/wav_file.h"
18 #include "webrtc/modules/audio_processing/aec/aec_common.h" 18 #include "webrtc/modules/audio_processing/aec/aec_common.h"
19 #include "webrtc/modules/audio_processing/aec/aec_core.h" 19 #include "webrtc/modules/audio_processing/aec/aec_core.h"
20 #include "webrtc/typedefs.h" 20 #include "webrtc/typedefs.h"
21 21
22 namespace webrtc {
23
22 // Number of partitions for the extended filter mode. The first one is an enum 24 // Number of partitions for the extended filter mode. The first one is an enum
23 // to be used in array declarations, as it represents the maximum filter length. 25 // to be used in array declarations, as it represents the maximum filter length.
24 enum { kExtendedNumPartitions = 32 }; 26 enum { kExtendedNumPartitions = 32 };
25 static const int kNormalNumPartitions = 12; 27 static const int kNormalNumPartitions = 12;
26 28
27 // Delay estimator constants, used for logging and delay compensation if 29 // Delay estimator constants, used for logging and delay compensation if
28 // if reported delays are disabled. 30 // if reported delays are disabled.
29 enum { kLookaheadBlocks = 15 }; 31 enum { kLookaheadBlocks = 15 };
30 enum { 32 enum {
31 // 500 ms for 16 kHz which is equivalent with the limit of reported delays. 33 // 500 ms for 16 kHz which is equivalent with the limit of reported delays.
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 typedef int (*WebRtcAecPartitionDelay)(const AecCore* aec); 222 typedef int (*WebRtcAecPartitionDelay)(const AecCore* aec);
221 extern WebRtcAecPartitionDelay WebRtcAec_PartitionDelay; 223 extern WebRtcAecPartitionDelay WebRtcAec_PartitionDelay;
222 224
223 typedef void (*WebRtcAecStoreAsComplex)(const float* data, 225 typedef void (*WebRtcAecStoreAsComplex)(const float* data,
224 float data_complex[2][PART_LEN1]); 226 float data_complex[2][PART_LEN1]);
225 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex; 227 extern WebRtcAecStoreAsComplex WebRtcAec_StoreAsComplex;
226 228
227 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x); 229 typedef void (*WebRtcAecWindowData)(float* x_windowed, const float* x);
228 extern WebRtcAecWindowData WebRtcAec_WindowData; 230 extern WebRtcAecWindowData WebRtcAec_WindowData;
229 231
232 } // namespace webrtc
233
230 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_ 234 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_AEC_CORE_INTERNAL_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/aec/aec_core.cc ('k') | webrtc/modules/audio_processing/aec/aec_core_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698