mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			481 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			481 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "dsp/fftengine.h"
 | 
						|
#ifdef USE_KISSFFT
 | 
						|
#include "dsp/kissengine.h"
 | 
						|
#endif
 | 
						|
#ifdef USE_FFTW
 | 
						|
#include "dsp/fftwengine.h"
 | 
						|
#endif // USE_FFTW
 | 
						|
 | 
						|
FFTEngine::~FFTEngine()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
FFTEngine* FFTEngine::create()
 | 
						|
{
 | 
						|
#ifdef USE_FFTW
 | 
						|
	qDebug("FFTEngine::create: using FFTW engine");
 | 
						|
	return new FFTWEngine;
 | 
						|
#elif USE_KISSFFT
 | 
						|
	qDebug("FFTEngine::create: using KissFFT engine");
 | 
						|
	return new KissEngine;
 | 
						|
#else // USE_KISSFFT
 | 
						|
	qCritical("FFTEngine::create: no engine built");
 | 
						|
	return 0;
 | 
						|
#endif
 | 
						|
}
 |