summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/stream_to_vector.h
blob: 6a6ed6082c6c1e469215ca659240310ff9b78cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* -*- c++ -*- */
/*
 * Copyright 2012 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifndef INCLUDED_BLOCKS_STREAM_TO_VECTOR_H
#define INCLUDED_BLOCKS_STREAM_TO_VECTOR_H

#include <gnuradio/blocks/api.h>
#include <gnuradio/sync_decimator.h>

namespace gr {
namespace blocks {

/*!
 * \brief convert a stream of items into a stream of gnuradio/blocks containing
 * nitems_per_block \ingroup stream_operators_blk
 */
class BLOCKS_API stream_to_vector : virtual public sync_decimator
{
public:
    // gr::blocks::stream_to_vector::sptr
    typedef boost::shared_ptr<stream_to_vector> sptr;

    /*!
     * Make a stream-to-vector block.
     *
     * \param itemsize the item size of the stream
     * \param nitems_per_block number of items to put into each vector (vector size)
     */
    static sptr make(size_t itemsize, size_t nitems_per_block);
};

} /* namespace blocks */
} /* namespace gr */

#endif /* INCLUDED_BLOCKS_STREAM_TO_VECTOR_H */