GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
dvbt2_cellinterleaver_cc.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2015,2017 Free Software Foundation, Inc.
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 *
7 */
8
9#ifndef INCLUDED_DTV_DVBT2_CELLINTERLEAVER_CC_H
10#define INCLUDED_DTV_DVBT2_CELLINTERLEAVER_CC_H
11
12#include <gnuradio/dtv/api.h>
14#include <gnuradio/sync_block.h>
15
16namespace gr {
17namespace dtv {
18
19/*!
20 * \brief Cell and time interleaves QPSK/QAM modulated cells.
21 * \ingroup dtv
22 *
23 * Input: QPSK, 16QAM, 64QAM or 256QAM modulated cells. \n
24 * Output: Cell and time interleaved QPSK, 16QAM, 64QAM or 256QAM modulated cells.
25 */
27{
28public:
29 typedef std::shared_ptr<dvbt2_cellinterleaver_cc> sptr;
30
31 /*!
32 * \brief Create a DVB-T2 cell and time interleaver.
33 *
34 * \param framesize FEC frame size (normal or short).
35 * \param constellation DVB-T2 constellation.
36 * \param fecblocks number of FEC frames in a T2 frame.
37 * \param tiblocks number of time interleaving blocks in a T2 frame.
38 */
39 static sptr make(dvb_framesize_t framesize,
40 dvb_constellation_t constellation,
41 int fecblocks,
42 int tiblocks);
43};
44
45} // namespace dtv
46} // namespace gr
47
48#endif /* INCLUDED_DTV_DVBT2_CELLINTERLEAVER_CC_H */
Cell and time interleaves QPSK/QAM modulated cells.
Definition: dvbt2_cellinterleaver_cc.h:27
static sptr make(dvb_framesize_t framesize, dvb_constellation_t constellation, int fecblocks, int tiblocks)
Create a DVB-T2 cell and time interleaver.
std::shared_ptr< dvbt2_cellinterleaver_cc > sptr
Definition: dvbt2_cellinterleaver_cc.h:29
synchronous 1:1 input to output with history
Definition: sync_block.h:26
#define DTV_API
Definition: gr-dtv/include/gnuradio/dtv/api.h:18
dvb_framesize_t
Definition: dvb_config.h:73
dvb_constellation_t
Definition: dvb_config.h:79
GNU Radio logging wrapper.
Definition: basic_block.h:29