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

Side by Side Diff: webrtc/modules/audio_processing/aec3/aec3_common.h

Issue 2678423005: Finalization of the first version of EchoCanceller 3 (Closed)
Patch Set: Fixed compilation error Created 3 years, 10 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) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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_AEC3_AEC3_CONSTANTS_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_AEC3_COMMON_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_AEC3_CONSTANTS_H_ 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_AEC3_COMMON_H_
13 13
14 #include <stddef.h> 14 #include <stddef.h>
15 #include "webrtc/typedefs.h"
15 16
16 namespace webrtc { 17 namespace webrtc {
17 18
19 #ifdef _MSC_VER /* visual c++ */
20 #define ALIGN16_BEG __declspec(align(16))
21 #define ALIGN16_END
22 #else /* gcc or icc */
23 #define ALIGN16_BEG
24 #define ALIGN16_END __attribute__((aligned(16)))
25 #endif
26
27 enum class Aec3Optimization { kNone, kSse2 };
28
18 constexpr size_t kFftLengthBy2 = 64; 29 constexpr size_t kFftLengthBy2 = 64;
19 constexpr size_t kFftLengthBy2Plus1 = kFftLengthBy2 + 1; 30 constexpr size_t kFftLengthBy2Plus1 = kFftLengthBy2 + 1;
31 constexpr size_t kFftLengthBy2Minus1 = kFftLengthBy2 - 1;
20 constexpr size_t kFftLength = 2 * kFftLengthBy2; 32 constexpr size_t kFftLength = 2 * kFftLengthBy2;
21 33
22 constexpr size_t kMaxNumBands = 3; 34 constexpr size_t kMaxNumBands = 3;
23 constexpr size_t kSubFrameLength = 80; 35 constexpr size_t kSubFrameLength = 80;
24 36
25 constexpr size_t kBlockSize = kFftLengthBy2; 37 constexpr size_t kBlockSize = kFftLengthBy2;
26 constexpr size_t kExtendedBlockSize = 2 * kFftLengthBy2; 38 constexpr size_t kExtendedBlockSize = 2 * kFftLengthBy2;
27 constexpr size_t kSubBlockSize = 16; 39 constexpr size_t kSubBlockSize = 16;
28 40
29 constexpr size_t NumBandsForRate(int sample_rate_hz) { 41 constexpr size_t NumBandsForRate(int sample_rate_hz) {
30 return static_cast<size_t>(sample_rate_hz == 8000 ? 1 42 return static_cast<size_t>(sample_rate_hz == 8000 ? 1
31 : sample_rate_hz / 16000); 43 : sample_rate_hz / 16000);
32 } 44 }
33 constexpr int LowestBandRate(int sample_rate_hz) { 45 constexpr int LowestBandRate(int sample_rate_hz) {
34 return sample_rate_hz == 8000 ? sample_rate_hz : 16000; 46 return sample_rate_hz == 8000 ? sample_rate_hz : 16000;
35 } 47 }
36 48
37 constexpr bool ValidFullBandRate(int sample_rate_hz) { 49 constexpr bool ValidFullBandRate(int sample_rate_hz) {
38 return sample_rate_hz == 8000 || sample_rate_hz == 16000 || 50 return sample_rate_hz == 8000 || sample_rate_hz == 16000 ||
39 sample_rate_hz == 32000 || sample_rate_hz == 48000; 51 sample_rate_hz == 32000 || sample_rate_hz == 48000;
40 } 52 }
41 53
54 // Detects what kind of optimizations to use for the code.
55 Aec3Optimization DetectOptimization();
56
42 static_assert(1 == NumBandsForRate(8000), "Number of bands for 8 kHz"); 57 static_assert(1 == NumBandsForRate(8000), "Number of bands for 8 kHz");
43 static_assert(1 == NumBandsForRate(16000), "Number of bands for 16 kHz"); 58 static_assert(1 == NumBandsForRate(16000), "Number of bands for 16 kHz");
44 static_assert(2 == NumBandsForRate(32000), "Number of bands for 32 kHz"); 59 static_assert(2 == NumBandsForRate(32000), "Number of bands for 32 kHz");
45 static_assert(3 == NumBandsForRate(48000), "Number of bands for 48 kHz"); 60 static_assert(3 == NumBandsForRate(48000), "Number of bands for 48 kHz");
46 61
47 static_assert(8000 == LowestBandRate(8000), "Sample rate of band 0 for 8 kHz"); 62 static_assert(8000 == LowestBandRate(8000), "Sample rate of band 0 for 8 kHz");
48 static_assert(16000 == LowestBandRate(16000), 63 static_assert(16000 == LowestBandRate(16000),
49 "Sample rate of band 0 for 16 kHz"); 64 "Sample rate of band 0 for 16 kHz");
50 static_assert(16000 == LowestBandRate(32000), 65 static_assert(16000 == LowestBandRate(32000),
51 "Sample rate of band 0 for 32 kHz"); 66 "Sample rate of band 0 for 32 kHz");
52 static_assert(16000 == LowestBandRate(48000), 67 static_assert(16000 == LowestBandRate(48000),
53 "Sample rate of band 0 for 48 kHz"); 68 "Sample rate of band 0 for 48 kHz");
54 69
55 static_assert(ValidFullBandRate(8000), 70 static_assert(ValidFullBandRate(8000),
56 "Test that 8 kHz is a valid sample rate"); 71 "Test that 8 kHz is a valid sample rate");
57 static_assert(ValidFullBandRate(16000), 72 static_assert(ValidFullBandRate(16000),
58 "Test that 16 kHz is a valid sample rate"); 73 "Test that 16 kHz is a valid sample rate");
59 static_assert(ValidFullBandRate(32000), 74 static_assert(ValidFullBandRate(32000),
60 "Test that 32 kHz is a valid sample rate"); 75 "Test that 32 kHz is a valid sample rate");
61 static_assert(ValidFullBandRate(48000), 76 static_assert(ValidFullBandRate(48000),
62 "Test that 48 kHz is a valid sample rate"); 77 "Test that 48 kHz is a valid sample rate");
63 static_assert(!ValidFullBandRate(8001), 78 static_assert(!ValidFullBandRate(8001),
64 "Test that 8001 Hz is not a valid sample rate"); 79 "Test that 8001 Hz is not a valid sample rate");
65 80
66 } // namespace webrtc 81 } // namespace webrtc
67 82
68 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_AEC3_CONSTANTS_H_ 83 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_AEC3_COMMON_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698