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

Side by Side Diff: webrtc/modules/audio_processing/utility/ooura_fft_tables_common.h

Issue 2348213002: Move the aec_rdft* files to a more proper place beneath APM and make them thread-safe. (Closed)
Patch Set: Rebase Created 4 years, 2 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
(Empty)
1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_UTILITY_OOURA_FFT_TABLES_COMMON_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_UTILITY_OOURA_FFT_TABLES_COMMON_H_
13
14 #include "webrtc/modules/audio_processing/utility/ooura_fft.h"
15
16 namespace webrtc {
17
18 // This tables used to be computed at run-time. For example, refer to:
19 // https://code.google.com/p/webrtc/source/browse/trunk/webrtc/modules/audio_pro cessing/utility/apm_rdft.c?r=6564
20 // to see the initialization code.
21 // Constants shared by all paths (C, SSE2, NEON).
22 const float rdft_w[64] = {
23 1.0000000000f, 0.0000000000f, 0.7071067691f, 0.7071067691f, 0.9238795638f,
24 0.3826834559f, 0.3826834559f, 0.9238795638f, 0.9807852507f, 0.1950903237f,
25 0.5555702448f, 0.8314695954f, 0.8314695954f, 0.5555702448f, 0.1950903237f,
26 0.9807852507f, 0.9951847196f, 0.0980171412f, 0.6343933344f, 0.7730104327f,
27 0.8819212914f, 0.4713967443f, 0.2902846634f, 0.9569403529f, 0.9569403529f,
28 0.2902846634f, 0.4713967443f, 0.8819212914f, 0.7730104327f, 0.6343933344f,
29 0.0980171412f, 0.9951847196f, 0.7071067691f, 0.4993977249f, 0.4975923598f,
30 0.4945882559f, 0.4903926253f, 0.4850156307f, 0.4784701765f, 0.4707720280f,
31 0.4619397819f, 0.4519946277f, 0.4409606457f, 0.4288643003f, 0.4157347977f,
32 0.4016037583f, 0.3865052164f, 0.3704755902f, 0.3535533845f, 0.3357794881f,
33 0.3171966672f, 0.2978496552f, 0.2777851224f, 0.2570513785f, 0.2356983721f,
34 0.2137775421f, 0.1913417280f, 0.1684449315f, 0.1451423317f, 0.1214900985f,
35 0.0975451618f, 0.0733652338f, 0.0490085706f, 0.0245338380f,
36 };
37
38 // Constants used by the C and MIPS paths.
39 const float rdft_wk3ri_first[16] = {
40 1.000000000f, 0.000000000f, 0.382683456f, 0.923879564f,
41 0.831469536f, 0.555570245f, -0.195090353f, 0.980785251f,
42 0.956940353f, 0.290284693f, 0.098017156f, 0.995184720f,
43 0.634393334f, 0.773010492f, -0.471396863f, 0.881921172f,
44 };
45 const float rdft_wk3ri_second[16] = {
46 -0.707106769f, 0.707106769f, -0.923879564f, -0.382683456f,
47 -0.980785251f, 0.195090353f, -0.555570245f, -0.831469536f,
48 -0.881921172f, 0.471396863f, -0.773010492f, -0.634393334f,
49 -0.995184720f, -0.098017156f, -0.290284693f, -0.956940353f,
50 };
51
52 } // namespace webrtc
53
54 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_UTILITY_OOURA_FFT_TABLES_COMMON_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698