예제 #1
0
void scfft_destroy(scfft *f, SCFFT_Allocator & alloc)
{
	if (f == NULL)
		return;
#if SC_FFT_FFTW
	fftwf_destroy_plan(f->plan);
#endif
	alloc.free(f);
}
예제 #2
0
void scfft_destroy(scfft *f, SCFFT_Allocator & alloc)
{
	alloc.free(f);
}