Merge branch 'wip/dxpsk' of http://gnuradio.org/git/jblum
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_agc_ff.cc
index 0fa2bc5b0d0ecf81dca06dc7af7c0b7d6b7d08d6..9e74fed85037408965a6a3b02e697d3f388f3fce 100644 (file)
@@ -6,7 +6,7 @@
  * 
  * GNU Radio 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; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
  * any later version.
  * 
  * GNU Radio is distributed in the hope that it will be useful,
@@ -26,7 +26,7 @@
 
 #include <gr_agc_ff.h>
 #include <gr_io_signature.h>
-#include <gri_agc.h>
+#include <gri_agc_ff.h>
 
 gr_agc_ff_sptr
 gr_make_agc_ff (float rate, float reference, float gain, float max_gain)
@@ -38,7 +38,7 @@ gr_agc_ff::gr_agc_ff (float rate, float reference, float gain, float max_gain)
   : gr_sync_block ("gr_agc_ff",
                   gr_make_io_signature (1, 1, sizeof (float)),
                   gr_make_io_signature (1, 1, sizeof (float)))
-  , gri_agc (rate,  reference, gain, max_gain)
+  , gri_agc_ff (rate,  reference, gain, max_gain)
 {
 }