samplebrain/brain/src/fft.h

48 lines
1.2 KiB
C
Raw Normal View History

2022-09-08 08:21:53 -03:00
// Copyright (C) 2015 2022 Then Try This
2015-07-21 14:13:39 -03:00
//
// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2015-07-08 04:08:49 -03:00
#include <fftw3.h>
2022-09-04 07:38:20 -03:00
#include <spiralcore/types.h>
2015-07-08 04:08:49 -03:00
2015-07-08 06:24:02 -03:00
#ifndef SPIRALCORE_FFT
#define SPIRALCORE_FFT
2015-07-08 04:08:49 -03:00
//#define __FFTWFLOAT__
2015-07-08 06:24:02 -03:00
namespace spiralcore {
2015-09-23 14:35:13 -03:00
class FFT
{
public:
FFT(u32 length, u32 rate, u32 num_bins);
2015-07-08 04:08:49 -03:00
~FFT();
2015-07-21 14:13:39 -03:00
void impulse2freq(const float *imp);
void calculate_bins();
2015-09-23 14:35:13 -03:00
float calculate_dominant_freq();
2015-07-08 04:08:49 -03:00
fftw_plan m_plan;
u32 m_length;
u32 m_rate;
u32 m_num_bins;
2015-07-08 04:08:49 -03:00
double *m_in;
fftw_complex *m_spectrum;
float *m_bin;
2015-09-23 14:35:13 -03:00
};
2015-07-08 06:24:02 -03:00
}
#endif