diff options
author | Tim O'Shea <tim.oshea753@gmail.com> | 2013-09-05 00:12:27 -0400 |
---|---|---|
committer | Tim O'Shea <tim.oshea753@gmail.com> | 2013-09-05 02:25:37 -0400 |
commit | 224f28e87fdc02f9a41d63c9c87cd456ceb04449 (patch) | |
tree | d5109e062785a283b7d3722b49c239f3e16c9cc6 /gr-analog/lib/agc3_cc_impl.h | |
parent | e0eab960ad32fdc20bfb1ea42eaacc79135e1208 (diff) |
new volk inverse square root kernel and agc3 speedups
Diffstat (limited to 'gr-analog/lib/agc3_cc_impl.h')
-rw-r--r-- | gr-analog/lib/agc3_cc_impl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-analog/lib/agc3_cc_impl.h b/gr-analog/lib/agc3_cc_impl.h index 77cc1978c5..a239370972 100644 --- a/gr-analog/lib/agc3_cc_impl.h +++ b/gr-analog/lib/agc3_cc_impl.h @@ -32,7 +32,7 @@ namespace gr { { public: agc3_cc_impl(float attack_rate = 1e-1, float decay_rate = 1e-2, - float reference = 1.0, float gain = 1.0); + float reference = 1.0, float gain = 1.0, int iir_update_decim=1); ~agc3_cc_impl(); float attack_rate() const { return d_attack; } @@ -58,6 +58,7 @@ namespace gr { float d_gain; float d_max_gain; bool d_reset; + int d_iir_update_decim; }; } /* namespace analog */ |