changes associated with save/restore of AutomationControl id's
[ardour2.git] / gtk2_ardour / fft.cc
blobd4841dd57315eb630ec5892eedfff87898b01f7f
1 /*
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.
20 #include "fft.h"
22 #include <stdlib.h>
23 #include <string.h>
24 #include <math.h>
26 FFT::FFT(uint32_t windowSize)
27 : _window_size(windowSize),
28 _data_size(_window_size/2),
29 _iterations(0),
30 _hann_window(0)
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);
41 reset();
44 void
45 FFT::reset()
47 memset(_power_at_bin, 0, sizeof(float) * _data_size);
48 memset(_phase_at_bin, 0, sizeof(float) * _data_size);
50 _iterations = 0;
53 void
54 FFT::analyze(ARDOUR::Sample *input, WindowingType windowing_type)
56 _iterations++;
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];
67 fftwf_execute(_plan);
69 _power_at_bin[0] += _fftOutput[0] * _fftOutput[0];
70 _phase_at_bin[0] += 0.0;
72 float power;
73 float phase;
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) {
83 phase += M_PI;
84 } else if (Re < 0.0 && Im < 0.0) {
85 phase -= M_PI;
88 _power_at_bin[i] += power;
89 _phase_at_bin[i] += phase;
91 #undef Re
92 #undef Im
95 void
96 FFT::calculate()
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;
103 _iterations = 1;
107 float *
108 FFT::get_hann_window()
110 if (_hann_window)
111 return _hann_window;
114 _hann_window = (float *) malloc(sizeof(float) * _window_size);
116 double sum = 0.0;
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;
129 return _hann_window;
133 FFT::~FFT()
135 if (_hann_window) {
136 free(_hann_window);
138 fftwf_destroy_plan(_plan);
139 free(_power_at_bin);
140 free(_phase_at_bin);
141 free(_fftOutput);
142 free(_fftInput);