| 
									
										
										
										
											2018-05-20 10:42:14 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2019-10-27 22:25:05 +01:00
										 |  |  | // Copyright (C) 2019 F4EXB                                                      //
 | 
					
						
							| 
									
										
										
										
											2018-05-20 10:42:14 +02:00
										 |  |  | // written by Edouard Griffiths                                                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							| 
									
										
										
										
											2019-10-27 22:25:05 +01:00
										 |  |  | // FFT based cross correlation. Uses FFTW/Kiss engine.                           //
 | 
					
						
							| 
									
										
										
										
											2018-05-20 10:42:14 +02: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 as version 3 of the License, or                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:32:15 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-05-20 10:42:14 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-27 22:25:05 +01:00
										 |  |  | #ifndef SDRBASE_DSP_FFTCORR2_H_
 | 
					
						
							|  |  |  | #define SDRBASE_DSP_FFTCORR2_H_
 | 
					
						
							| 
									
										
										
										
											2018-05-20 10:42:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <complex>
 | 
					
						
							| 
									
										
										
										
											2019-10-27 22:25:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "dsp/fftwindow.h"
 | 
					
						
							| 
									
										
										
										
											2018-05-20 10:42:14 +02:00
										 |  |  | #include "export.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-27 22:25:05 +01:00
										 |  |  | class FFTEngine; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-20 10:42:14 +02:00
										 |  |  | class SDRBASE_API fftcorr { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     typedef std::complex<float> cmplx; | 
					
						
							|  |  |  |     fftcorr(int len); | 
					
						
							|  |  |  |     ~fftcorr(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int run(const cmplx& inA, const cmplx* inB, cmplx **out); //!< if inB = 0 then run auto-correlation
 | 
					
						
							| 
									
										
										
										
											2018-05-20 18:17:53 +02:00
										 |  |  |     const cmplx& run(const cmplx& inA, const cmplx* inB); | 
					
						
							| 
									
										
										
										
											2018-05-20 10:42:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     void init_fft(); | 
					
						
							|  |  |  |     int flen;  //!< FFT length
 | 
					
						
							| 
									
										
										
										
											2018-05-20 20:23:41 +02:00
										 |  |  |     int flen2; //!< half FFT length
 | 
					
						
							| 
									
										
										
										
											2019-10-27 22:25:05 +01:00
										 |  |  |     FFTEngine *fftA; | 
					
						
							|  |  |  |     FFTEngine *fftB; | 
					
						
							|  |  |  |     FFTEngine *fftInvA; | 
					
						
							| 
									
										
										
										
											2020-03-12 15:34:32 +01:00
										 |  |  |     unsigned int fftASequence; | 
					
						
							|  |  |  |     unsigned int fftBSequence; | 
					
						
							|  |  |  |     unsigned int fftInvASequence; | 
					
						
							| 
									
										
										
										
											2019-10-27 22:25:05 +01:00
										 |  |  |     FFTWindow m_window; | 
					
						
							| 
									
										
										
										
											2018-05-20 10:42:14 +02:00
										 |  |  |     cmplx *dataA;  // from A input
 | 
					
						
							|  |  |  |     cmplx *dataB;  // from B input
 | 
					
						
							|  |  |  |     cmplx *dataBj; // conjugate of B
 | 
					
						
							|  |  |  |     cmplx *dataP;  // product of A with conjugate of B
 | 
					
						
							|  |  |  |     int inptrA; | 
					
						
							|  |  |  |     int inptrB; | 
					
						
							| 
									
										
										
										
											2018-05-20 18:17:53 +02:00
										 |  |  |     int outptr; | 
					
						
							| 
									
										
										
										
											2018-05-20 10:42:14 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-27 22:25:05 +01:00
										 |  |  | #endif /* SDRBASE_DSP_FFTCORR2_H_ */
 |