X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fprocsignal.h;h=14b8f6f85390139007efab727ca8e5ba73b40dfe;hp=c6472f88851e222ae4951fde5bd9f6d73a9043a5;hb=d42d3d062dd1aca92b5a2552a1f474aab0bee610;hpb=663448e3173a19f054952806d8f8eca2fe59ec90 diff --git a/include/procsignal.h b/include/procsignal.h index c6472f8..14b8f6f 100644 --- a/include/procsignal.h +++ b/include/procsignal.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: procsignal.h,v 1.16 2001/03/13 14:53:43 kevin Exp $ +** $Id$ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -33,8 +33,7 @@ #include "config.h" #endif #ifdef HAVE_FFTW -#include -#include +#include #endif #include @@ -152,9 +151,9 @@ class ProcessSignal { static const int s_iFilterGenerationCount; #ifdef HAVE_FFTW - fftw_real* m_adRealFftInput, *m_adRealFftSignal; - rfftw_plan m_realPlanForward, m_realPlanBackward; - fftw_complex* m_adComplexFftInput, *m_adComplexFftSignal; + double *m_adRealFftInput, *m_adRealFftOutput, *m_adRealFftSignal, *m_adRealFftBackwardOutput; + fftw_plan m_realPlanForward, m_realPlanBackward; + fftw_complex *m_adComplexFftInput, *m_adComplexFftOutput, *m_adComplexFftSignal, *m_adComplexFftBackwardOutput; fftw_plan m_complexPlanForward, m_complexPlanBackward; #endif