e9545549f9dcaee8e0a63dcfc0320f2d65a74090
[debian/gnuradio] / gnuradio-core / src / lib / filter / gri_fir_filter_with_buffer_ccf.cc
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 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26 #include <gri_fir_filter_with_buffer_ccf.h>
27 #include <cstdio>
28
29 gri_fir_filter_with_buffer_ccf::gri_fir_filter_with_buffer_ccf(const std::vector<float> &taps)
30 {
31   d_buffer = NULL;
32   set_taps(taps);
33 }
34
35 gri_fir_filter_with_buffer_ccf::~gri_fir_filter_with_buffer_ccf()
36 {
37   free(d_buffer);
38 }
39
40 gr_complex 
41 gri_fir_filter_with_buffer_ccf::filter (gr_complex input)
42 {
43 #if 0
44   unsigned int i;
45   
46   for(i = ntaps()-1; i > 0; i--) {
47     d_buffer[i] = d_buffer[i-1];
48   }
49   d_buffer[0] = input;
50
51   gr_complex out = d_buffer[0]*d_taps[0];
52   for(i = 1; i < ntaps(); i++) {
53     out += d_buffer[i]*d_taps[i];
54   }
55   return out;
56
57 #else
58   unsigned int i;
59
60   d_buffer[d_idx] = input;
61   d_buffer[d_idx+ntaps()] = input;
62   //d_idx = (d_idx + 1) % ntaps();
63   d_idx++;
64   if(d_idx == ntaps())
65     d_idx = 0;
66
67   gr_complex out = d_buffer[d_idx]*d_taps[0];
68   for(i = 1; i < ntaps(); i++) {
69     out += d_buffer[d_idx + i]*d_taps[i];
70   }
71   return out;
72 #endif
73 }
74
75 void
76 gri_fir_filter_with_buffer_ccf::filterN (gr_complex output[],
77                                          const gr_complex input[],
78                                          unsigned long n)
79 {
80
81 }