diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2017-06-07 10:27:43 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2017-06-07 10:27:43 -0700 |
commit | d774dfca9b39d955b89e6b97f428e7bd9368dd24 (patch) | |
tree | e53548b383a57d771f1a896ae313aab1a8142c1c | |
parent | 2029d508fbbda33dfae14aa649371489bdd5bad5 (diff) | |
parent | d25b1435444cfe28422d903fed6d856ece5d5e9b (diff) |
Merge remote-tracking branch 'github/pr/1315' into maint
-rw-r--r-- | gr-blocks/lib/stream_to_tagged_stream_impl.cc | 7 | ||||
-rw-r--r-- | gr-blocks/lib/stream_to_tagged_stream_impl.h | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gr-blocks/lib/stream_to_tagged_stream_impl.cc b/gr-blocks/lib/stream_to_tagged_stream_impl.cc index 58e1a9c5b0..f0de33a16f 100644 --- a/gr-blocks/lib/stream_to_tagged_stream_impl.cc +++ b/gr-blocks/lib/stream_to_tagged_stream_impl.cc @@ -84,6 +84,13 @@ namespace gr { return noutput_items; } + bool + stream_to_tagged_stream_impl::start() + { + d_next_tag_pos = 0; + return true; + } + } /* namespace blocks */ } /* namespace gr */ diff --git a/gr-blocks/lib/stream_to_tagged_stream_impl.h b/gr-blocks/lib/stream_to_tagged_stream_impl.h index dc9c117765..586bd202fa 100644 --- a/gr-blocks/lib/stream_to_tagged_stream_impl.h +++ b/gr-blocks/lib/stream_to_tagged_stream_impl.h @@ -46,6 +46,8 @@ namespace gr { int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); + + bool start(); }; } // namespace blocks |