blob: be6255ba7fcb1915e58a62d47302506c0748cced (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/* -*- 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_MUX_H
#define INCLUDED_BLOCKS_STREAM_MUX_H
#include <gnuradio/block.h>
#include <gnuradio/blocks/api.h>
#include <vector>
namespace gr {
namespace blocks {
/*!
* \brief Stream muxing block to multiplex many streams into
* one with a specified format.
* \ingroup stream_operators_blk
*
* \details
* Muxes N streams together producing an output stream that
* contains N0 items from the first stream, N1 items from the second,
* etc. and repeats:
*
* [N0, N1, N2, ..., Nm, N0, N1, ...]
*/
class BLOCKS_API stream_mux : virtual public block
{
public:
// gr::blocks::stream_mux::sptr
typedef std::shared_ptr<stream_mux> sptr;
/*!
* \brief Creates a stream muxing block to multiplex many streams into
* one with a specified format.
*
* \param itemsize the item size of the stream
* \param lengths a vector (list/tuple) specifying the number of
* items from each stream the mux together.
* Warning: this requires that at least as many items
* per stream are available or the system will wait
* indefinitely for the items.
*
*/
static sptr make(size_t itemsize, const std::vector<int>& lengths);
};
} /* namespace blocks */
} /* namespace gr */
#endif /* INCLUDED_BLOCKS_STREAM_MUX_H */
|