diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2019-08-07 21:45:12 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-08-09 23:04:28 +0200 |
commit | f7bbf2c1d8d780294f3e016aff239ca35eb6516e (patch) | |
tree | e09ab6112e02b2215b2d59ac24d3d6ea2edac745 /gr-blocks/lib/stream_to_streams_impl.cc | |
parent | 78431dc6941e3acc67c858277dfe4a0ed583643c (diff) |
Tree: clang-format without the include sorting
Diffstat (limited to 'gr-blocks/lib/stream_to_streams_impl.cc')
-rw-r--r-- | gr-blocks/lib/stream_to_streams_impl.cc | 63 |
1 files changed, 30 insertions, 33 deletions
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 */ |