diff options
author | Tom Rondeau <tom@trondeau.com> | 2015-04-08 12:20:08 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2015-04-08 12:20:08 -0400 |
commit | 86759e94bb1cc7d3ff071e398e972ec1a6ceed70 (patch) | |
tree | 0608ac4b0ea1eed2afa1bc09c409abafd20d7324 /gr-blocks/lib/peak_detector2_fb_impl.h | |
parent | d4b38e890c5ba3422160ba1ca5db3f55762eeb34 (diff) |
blocks: fixed problem with setting peak detector's alpha value.
This changes the public interface from an int to a float. But the
alpha must be between 0 and 1 for it to make any sense, so if this is
being used, it's never producing the right answer. Also, it's likely
that this change will be transparent to anyone who is trying to set
it.
Diffstat (limited to 'gr-blocks/lib/peak_detector2_fb_impl.h')
-rw-r--r-- | gr-blocks/lib/peak_detector2_fb_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/peak_detector2_fb_impl.h b/gr-blocks/lib/peak_detector2_fb_impl.h index 53c06ca810..f5a8ac1a6b 100644 --- a/gr-blocks/lib/peak_detector2_fb_impl.h +++ b/gr-blocks/lib/peak_detector2_fb_impl.h @@ -47,7 +47,7 @@ namespace gr { void set_threshold_factor_rise(float thr) { d_threshold_factor_rise = thr; } void set_look_ahead(int look) { d_look_ahead = look; } - void set_alpha(int alpha) { d_alpha = alpha; } + void set_alpha(float alpha) { d_alpha = alpha; } float threshold_factor_rise() { return d_threshold_factor_rise; } int look_ahead() { return d_look_ahead; } |