diff options
author | Tom Rondeau <tom@trondeau.com> | 2013-10-08 15:56:26 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2013-10-29 12:23:09 -0400 |
commit | bb91d3f7edbfe39c8296ecb6e104bf2fafe84f3b (patch) | |
tree | c3550785150369152926e2a61f05701b6b0c43d5 /gr-blocks/lib/delay_impl.cc | |
parent | f3f5a5ae0ae0093277494b2380a77c8eed439035 (diff) |
Updated some blocks for the group_delay concept.
filter: FFT and (decim/interp) FIR filters can set through GRC.
blocks: delay block's group delay is fixed to the delay value.
qtgui: time sinks history is related to the group delay for displaying tags.
Diffstat (limited to 'gr-blocks/lib/delay_impl.cc')
-rw-r--r-- | gr-blocks/lib/delay_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/delay_impl.cc b/gr-blocks/lib/delay_impl.cc index 9d377fb1e6..342beab707 100644 --- a/gr-blocks/lib/delay_impl.cc +++ b/gr-blocks/lib/delay_impl.cc @@ -72,7 +72,7 @@ namespace gr { gr::thread::scoped_lock l(d_mutex_delay); int old = dly(); set_history(d+1); - set_tag_propagation_delay(d); + set_group_delay(history()); d_delta += dly() - old; } } |