Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

resampler.h

Go to the documentation of this file.
00001 /*
00002  * SPUC - Signal processing using C++ - A DSP library
00003  * 
00004  * This program is free software; you can redistribute it and/or modify
00005  * it under the terms of the GNU General Public License as published by
00006  * the Free Software Foundation; either version 2, or (at your option)
00007  * any later version.
00008  * 
00009  * This program is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU General Public License for more details.
00013  * 
00014  * You should have received a copy of the GNU General Public License
00015  * along with this program; if not, write to the Free Software
00016  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00017 */
00018 #ifndef RESAMPLER
00019 #define RESAMPLER
00020 #include <complex.h>
00021 #include "cmplx_allpass_halfband.h"
00022 #include "timing_nco.h"
00023 #include <lagrange.h>
00024 #include <fir.h>
00025 namespace SPUC {
00030 //
00042 class resampler
00043 {
00044  public:        
00045         long ready;
00046         long sample2;
00047         lagrange <complex<long> > interp;
00048         timing_nco symbol_nco;   
00049         complex<long> resampled; 
00050         cmplx_allpass_halfband half; 
00051 
00052         complex<long> update(complex<long> input_data, long symbol_loop, long sym_clk);
00053 
00054         resampler(void) : interp(4) { resampled = 0; ready = 0; }
00055 //      ~resampler(void) { }
00056 };
00057 } // namespace SPUC 
00058 #endif

Generated on Fri Sep 16 11:02:24 2005 for spuc by  doxygen 1.4.4