2 Copyright (C) 2008 Paul Davis
3 Author: Sampo Savolainen
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 FFT::FFT(uint32_t windowSize
)
27 : _window_size(windowSize
),
28 _data_size(_window_size
/2),
32 _fftInput
= (float *) fftwf_malloc(sizeof(float) * _window_size
);
34 _fftOutput
= (float *) fftwf_malloc(sizeof(float) * _window_size
);
36 _power_at_bin
= (float *) malloc(sizeof(float) * _data_size
);
37 _phase_at_bin
= (float *) malloc(sizeof(float) * _data_size
);
39 _plan
= fftwf_plan_r2r_1d(_window_size
, _fftInput
, _fftOutput
, FFTW_R2HC
, FFTW_ESTIMATE
);
47 memset(_power_at_bin
, 0, sizeof(float) * _data_size
);
48 memset(_phase_at_bin
, 0, sizeof(float) * _data_size
);
54 FFT::analyze(ARDOUR::Sample
*input
, WindowingType windowing_type
)
58 memcpy(_fftInput
, input
, sizeof(float) * _window_size
);
60 if (windowing_type
== HANN
) {
61 float *window
= get_hann_window();
62 for (uint32_t i
= 0; i
< _window_size
; i
++) {
63 _fftInput
[i
] *= window
[i
];
69 _power_at_bin
[0] += _fftOutput
[0] * _fftOutput
[0];
70 _phase_at_bin
[0] += 0.0;
75 #define Re (_fftOutput[i])
76 #define Im (_fftOutput[_window_size-i])
77 for (uint32_t i
=1; i
< _data_size
- 1; i
++) {
79 power
= (Re
* Re
) + (Im
* Im
);
80 phase
= atanf(Im
/ Re
);
82 if (Re
< 0.0 && Im
> 0.0) {
84 } else if (Re
< 0.0 && Im
< 0.0) {
88 _power_at_bin
[i
] += power
;
89 _phase_at_bin
[i
] += phase
;
98 if (_iterations
> 1) {
99 for (uint32_t i
=0; i
< _data_size
- 1; i
++) {
100 _power_at_bin
[i
] /= (float)_iterations
;
101 _phase_at_bin
[i
] /= (float)_iterations
;
108 FFT::get_hann_window()
114 _hann_window
= (float *) malloc(sizeof(float) * _window_size
);
118 for (uint32_t i
=0; i
< _window_size
; i
++) {
119 _hann_window
[i
]=0.81f
* ( 0.5f
- (0.5f
* (float) cos(2.0f
* M_PI
* (float)i
/ (float)(_window_size
))));
120 sum
+= _hann_window
[i
];
123 double isum
= 1.0 / sum
;
125 for (uint32_t i
=0; i
< _window_size
; i
++) {
126 _hann_window
[i
] *= isum
;
138 fftwf_destroy_plan(_plan
);