1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
Copyright (C) 2011, 2012
Her Majesty the Queen in Right of Canada (Communications Research
Center Canada)
*/
/*
This file is part of ODR-DabMod.
ODR-DabMod is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
ODR-DabMod is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KISS_FFTSIMD_H
#define KISS_FFTSIMD_H
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <kiss_fft.h>
#define FFT_TYPE kiss_fft_cpx
#define FFT_PLAN kiss_fft_cfg
#define FFT_REAL(a) (a).r
#define FFT_IMAG(a) (a).i
#ifdef USE_SIMD
typedef struct {
float r[4];
float i[4];
} kiss_fft_complex;
typedef struct {
float r;
float i;
} complex_float;
void kiss_fft_pack(kiss_fft_complex *in, size_t in_size, size_t in_offset,
kiss_fft_complex *out, size_t out_size, size_t out_offset,
size_t stride, size_t n);
void kiss_fft_unpack(kiss_fft_complex *dst, kiss_fft_complex *src, size_t n, size_t offset, size_t stride);
#endif
#endif // KISS_FFTSIMD_H
|