summaryrefslogtreecommitdiff
path: root/gr-blocks
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2017-06-07 11:55:52 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2017-06-07 11:55:52 -0700
commitc1f706fb1bec6a68191d44498c70d17226bd4ea7 (patch)
tree729de66f57cb70e67839c9b363d68fe34840784b /gr-blocks
parent6ca6b47c53f4767a3f6e8b062086733010e72ca3 (diff)
parent37d373acee2112b0bb350e5abe09aca0115e5cc6 (diff)
Merge branch 'master' into next
Diffstat (limited to 'gr-blocks')
-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