From f7bbf2c1d8d780294f3e016aff239ca35eb6516e Mon Sep 17 00:00:00 2001 From: Marcus Müller <mmueller@gnuradio.org> Date: Wed, 7 Aug 2019 21:45:12 +0200 Subject: Tree: clang-format without the include sorting --- gr-blocks/lib/stream_to_streams_impl.cc | 63 ++++++++++++++++----------------- 1 file changed, 30 insertions(+), 33 deletions(-) (limited to 'gr-blocks/lib/stream_to_streams_impl.cc') diff --git a/gr-blocks/lib/stream_to_streams_impl.cc b/gr-blocks/lib/stream_to_streams_impl.cc index 2832a21563..a25786b5b3 100644 --- a/gr-blocks/lib/stream_to_streams_impl.cc +++ b/gr-blocks/lib/stream_to_streams_impl.cc @@ -29,44 +29,41 @@ #include <string.h> namespace gr { - namespace blocks { +namespace blocks { - stream_to_streams::sptr - stream_to_streams::make(size_t itemsize, size_t nstreams) - { - return gnuradio::get_initial_sptr - (new stream_to_streams_impl(itemsize, nstreams)); - } - - stream_to_streams_impl::stream_to_streams_impl(size_t itemsize, size_t nstreams) - : sync_decimator("stream_to_streams", - io_signature::make(1, 1, itemsize), - io_signature::make(nstreams, nstreams, itemsize), - nstreams) - { - } +stream_to_streams::sptr stream_to_streams::make(size_t itemsize, size_t nstreams) +{ + return gnuradio::get_initial_sptr(new stream_to_streams_impl(itemsize, nstreams)); +} - int - stream_to_streams_impl::work(int noutput_items, - gr_vector_const_void_star &input_items, - gr_vector_void_star &output_items) - { - size_t item_size = output_signature()->sizeof_stream_item(0); +stream_to_streams_impl::stream_to_streams_impl(size_t itemsize, size_t nstreams) + : sync_decimator("stream_to_streams", + io_signature::make(1, 1, itemsize), + io_signature::make(nstreams, nstreams, itemsize), + nstreams) +{ +} - const char *in = (const char *)input_items[0]; - char **outv = (char **)&output_items[0]; - int nstreams = output_items.size(); +int stream_to_streams_impl::work(int noutput_items, + gr_vector_const_void_star& input_items, + gr_vector_void_star& output_items) +{ + size_t item_size = output_signature()->sizeof_stream_item(0); - for (int i = 0; i < noutput_items; i++) { - for (int j = 0; j < nstreams; j++) { - memcpy(outv[j], in, item_size); - outv[j] += item_size; - in += item_size; - } - } + const char* in = (const char*)input_items[0]; + char** outv = (char**)&output_items[0]; + int nstreams = output_items.size(); - return noutput_items; + for (int i = 0; i < noutput_items; i++) { + for (int j = 0; j < nstreams; j++) { + memcpy(outv[j], in, item_size); + outv[j] += item_size; + in += item_size; + } } - } /* namespace blocks */ + return noutput_items; +} + +} /* namespace blocks */ } /* namespace gr */ -- cgit v1.2.3