// Copyright (c) 2016 Network
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "frontend/fft.h"
|
|
|
|
namespace wenet {
|
|
|
|
void make_sintbl(int n, float* sintbl) {
|
|
int i, n2, n4, n8;
|
|
float c, s, dc, ds, t;
|
|
|
|
n2 = n / 2;
|
|
n4 = n / 4;
|
|
n8 = n / 8;
|
|
t = sin(M_PI / n);
|
|
dc = 2 * t * t;
|
|
ds = sqrt(dc * (2 - dc));
|
|
t = 2 * dc;
|
|
c = sintbl[n4] = 1;
|
|
s = sintbl[0] = 0;
|
|
for (i = 1; i < n8; ++i) {
|
|
c -= dc;
|
|
dc += t * c;
|
|
s += ds;
|
|
ds -= t * s;
|
|
sintbl[i] = s;
|
|
sintbl[n4 - i] = c;
|
|
}
|
|
if (n8 != 0) sintbl[n8] = sqrt(0.5);
|
|
for (i = 0; i < n4; ++i) sintbl[n2 - i] = sintbl[i];
|
|
for (i = 0; i < n2 + n4; ++i) sintbl[i + n2] = -sintbl[i];
|
|
}
|
|
|
|
void make_bitrev(int n, int* bitrev) {
|
|
int i, j, k, n2;
|
|
|
|
n2 = n / 2;
|
|
i = j = 0;
|
|
for (;;) {
|
|
bitrev[i] = j;
|
|
if (++i >= n) break;
|
|
k = n2;
|
|
while (k <= j) {
|
|
j -= k;
|
|
k /= 2;
|
|
}
|
|
j += k;
|
|
}
|
|
}
|
|
|
|
// bitrev: bit reversal table
|
|
// sintbl: trigonometric function table
|
|
// x:real part
|
|
// y:image part
|
|
// n: fft length
|
|
int fft(const int* bitrev, const float* sintbl, float* x, float* y, int n) {
|
|
int i, j, k, ik, h, d, k2, n4, inverse;
|
|
float t, s, c, dx, dy;
|
|
|
|
/* preparation */
|
|
if (n < 0) {
|
|
n = -n;
|
|
inverse = 1; /* inverse transform */
|
|
} else {
|
|
inverse = 0;
|
|
}
|
|
n4 = n / 4;
|
|
if (n == 0) {
|
|
return 0;
|
|
}
|
|
|
|
/* bit reversal */
|
|
for (i = 0; i < n; ++i) {
|
|
j = bitrev[i];
|
|
if (i < j) {
|
|
t = x[i];
|
|
x[i] = x[j];
|
|
x[j] = t;
|
|
t = y[i];
|
|
y[i] = y[j];
|
|
y[j] = t;
|
|
}
|
|
}
|
|
|
|
/* transformation */
|
|
for (k = 1; k < n; k = k2) {
|
|
h = 0;
|
|
k2 = k + k;
|
|
d = n / k2;
|
|
for (j = 0; j < k; ++j) {
|
|
c = sintbl[h + n4];
|
|
if (inverse)
|
|
s = -sintbl[h];
|
|
else
|
|
s = sintbl[h];
|
|
for (i = j; i < n; i += k2) {
|
|
ik = i + k;
|
|
dx = s * y[ik] + c * x[ik];
|
|
dy = c * y[ik] - s * x[ik];
|
|
x[ik] = x[i] - dx;
|
|
x[i] += dx;
|
|
y[ik] = y[i] - dy;
|
|
y[i] += dy;
|
|
}
|
|
h += d;
|
|
}
|
|
}
|
|
if (inverse) {
|
|
/* divide by n in case of the inverse transformation */
|
|
for (i = 0; i < n; ++i) {
|
|
x[i] /= n;
|
|
y[i] /= n;
|
|
}
|
|
}
|
|
return 0; /* finished successfully */
|
|
}
|
|
|
|
} // namespace wenet
|