Adding accessor function to Goertzel filter implementaiton to set/reset its parameters.
[debian/gnuradio] / gnuradio-core / src / lib / filter / gri_goertzel.h
index 86d3d34d36111e2f8ad89d73c803a2ca7c2a2f94..e062f000e01c83e42c38948d195bd9c7a6c48b6b 100644 (file)
@@ -1,6 +1,6 @@
 /* -*- c++ -*- */
 /*
- * Copyright 2006 Free Software Foundation, Inc.
+ * Copyright 2006,2011 Free Software Foundation, Inc.
  * 
  * This file is part of GNU Radio
  * 
@@ -34,6 +34,7 @@ class gri_goertzel
 public:
   gri_goertzel() {}
   gri_goertzel(int rate, int len, float freq);
+  void gri_setparms(int rate, int len, float freq);
 
   // Process a input array
   gr_complex batch(float *in);