2008-10-13 15:45:20 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2008 Sampo Savolainen <v2@iki.fi>
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2008-10-13 15:45:20 -04:00
|
|
|
|
|
|
|
#ifndef __ardour_fft_h__
|
|
|
|
#define __ardour_fft_h__
|
|
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <complex> // this needs to be included before fftw3.h
|
|
|
|
#include <fftw3.h>
|
|
|
|
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/types.h"
|
2008-10-13 15:45:20 -04:00
|
|
|
|
2011-03-03 12:58:11 -05:00
|
|
|
namespace GTKArdour {
|
|
|
|
|
2008-10-13 15:45:20 -04:00
|
|
|
class FFT
|
|
|
|
{
|
2019-02-27 21:08:21 -05:00
|
|
|
public:
|
|
|
|
FFT (uint32_t);
|
|
|
|
~FFT ();
|
2008-10-13 15:45:20 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
enum WindowingType {
|
|
|
|
NONE,
|
|
|
|
HANN
|
|
|
|
};
|
2008-10-20 14:57:34 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
void reset ();
|
|
|
|
void analyze (ARDOUR::Sample*, WindowingType w = NONE);
|
|
|
|
void calculate ();
|
2008-10-13 15:45:20 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
uint32_t bins () const { return _data_size; }
|
2008-10-13 15:45:20 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
float power_at_bin (uint32_t i) const { return _power_at_bin[i]; }
|
|
|
|
float phase_at_bin (uint32_t i) const { return _phase_at_bin[i]; }
|
2008-10-13 15:45:20 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
private:
|
|
|
|
float* get_hann_window ();
|
2008-10-20 14:57:34 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
uint32_t const _window_size;
|
|
|
|
uint32_t const _data_size;
|
|
|
|
uint32_t _iterations;
|
2008-10-13 15:45:20 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
float* _hann_window;
|
2008-10-20 14:57:34 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
float* _fftInput;
|
|
|
|
float* _fftOutput;
|
2008-10-13 15:45:20 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
float* _power_at_bin;
|
|
|
|
float* _phase_at_bin;
|
2008-10-20 14:57:34 -04:00
|
|
|
|
2019-02-27 21:08:21 -05:00
|
|
|
fftwf_plan _plan;
|
2008-10-13 15:45:20 -04:00
|
|
|
};
|
|
|
|
|
2011-03-03 12:58:11 -05:00
|
|
|
}
|
|
|
|
|
2008-10-13 15:45:20 -04:00
|
|
|
#endif
|