summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2017-06-07 10:27:43 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2017-06-07 10:27:43 -0700
commitd774dfca9b39d955b89e6b97f428e7bd9368dd24 (patch)
treee53548b383a57d771f1a896ae313aab1a8142c1c
parent2029d508fbbda33dfae14aa649371489bdd5bad5 (diff)
parentd25b1435444cfe28422d903fed6d856ece5d5e9b (diff)
Merge remote-tracking branch 'github/pr/1315' into maint
-rw-r--r--gr-blocks/lib/stream_to_tagged_stream_impl.cc7
-rw-r--r--gr-blocks/lib/stream_to_tagged_stream_impl.h2
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