Cleaning up synthesis filter and using new FIR filter with buffer.
[debian/gnuradio] / gnuradio-core / src / lib / filter / gr_pfb_synthesis_filterbank_ccf.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2010 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23
24 #ifndef INCLUDED_GR_PFB_SYNTHESIS_FILTERBANK_CCF_H
25 #define INCLUDED_GR_PFB_SYNTHESIS_FILTERBANK_CCF_H
26
27 #include <gr_sync_interpolator.h>
28 #include <gri_fir_filter_with_buffer_ccf.h>
29
30 class gr_pfb_synthesis_filterbank_ccf;
31 typedef boost::shared_ptr<gr_pfb_synthesis_filterbank_ccf> gr_pfb_synthesis_filterbank_ccf_sptr;
32 gr_pfb_synthesis_filterbank_ccf_sptr gr_make_pfb_synthesis_filterbank_ccf 
33     (unsigned int numchans, const std::vector<float> &taps);
34
35 class gri_fft_complex;
36
37
38 /*!
39  * \class gr_pfb_synthesis_filterbank_ccf
40  *
41  * \brief Polyphase synthesis filterbank with 
42  *        gr_complex input, gr_complex output and float taps
43  *
44  * \ingroup filter_blk
45  */
46
47 class gr_pfb_synthesis_filterbank_ccf : public gr_sync_interpolator
48 {
49  private:
50   /*!
51    * Build the polyphase synthesis filterbank.
52    * \param numchans (unsigned integer) Specifies the number of 
53                      channels <EM>M</EM>
54    * \param taps    (vector/list of floats) The prototype filter to
55                     populate the filterbank.
56    */
57   friend gr_pfb_synthesis_filterbank_ccf_sptr gr_make_pfb_synthesis_filterbank_ccf 
58       (unsigned int numchans, const std::vector<float> &taps);
59
60   bool                     d_updated;
61   unsigned int             d_numchans;
62   unsigned int             d_taps_per_filter;
63   gri_fft_complex         *d_fft;
64   std::vector< gri_fir_filter_with_buffer_ccf*> d_filters;
65   std::vector< std::vector<float> > d_taps;
66
67
68   /*!
69    * Build the polyphase synthesis filterbank.
70    * \param numchans (unsigned integer) Specifies the number of
71                      channels <EM>M</EM>
72    * \param taps    (vector/list of floats) The prototype filter
73                     to populate the filterbank.
74    */
75   gr_pfb_synthesis_filterbank_ccf (unsigned int numchans, 
76                                    const std::vector<float> &taps);
77   
78 public:
79   ~gr_pfb_synthesis_filterbank_ccf ();
80   
81   /*!
82    * Resets the filterbank's filter taps with the new prototype filter
83    * \param taps    (vector/list of floats) The prototype filter to
84                     populate the filterbank.
85    */
86   void set_taps (const std::vector<float> &taps);
87
88   /*!
89    * Print all of the filterbank taps to screen.
90    */
91   void print_taps();
92   
93   int work (int noutput_items,
94             gr_vector_const_void_star &input_items,
95             gr_vector_void_star &output_items);
96 };
97
98 #endif