GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
dvbt2_interleaver_bb.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_INTERLEAVER_BB_H
10#define INCLUDED_DTV_DVBT2_INTERLEAVER_BB_H
11
12#include <gnuradio/block.h>
13#include <gnuradio/dtv/api.h>
15
16namespace gr {
17namespace dtv {
18
19/*!
20 * \brief Bit interleaves DVB-T2 FEC baseband frames.
21 * \ingroup dtv
22 *
23 * Input: Normal or short FEC baseband frames with appended LPDC (LDPCFEC). \n
24 * Output: Bit interleaved (with column twist and bit to cell word de-multiplexed) cells.
25 */
27{
28public:
29 typedef std::shared_ptr<dvbt2_interleaver_bb> sptr;
30
31 /*!
32 * \brief Create a DVB-T2 bit interleaver.
33 *
34 * \param framesize FEC frame size (normal or short).
35 * \param rate FEC code rate.
36 * \param constellation DVB-T2 constellation.
37 */
38 static sptr make(dvb_framesize_t framesize,
39 dvb_code_rate_t rate,
40 dvb_constellation_t constellation);
41};
42
43} // namespace dtv
44} // namespace gr
45
46#endif /* INCLUDED_DTV_DVBT2_INTERLEAVER_BB_H */
The abstract base class for all 'terminal' processing blocks.
Definition: gnuradio-runtime/include/gnuradio/block.h:63
Bit interleaves DVB-T2 FEC baseband frames.
Definition: dvbt2_interleaver_bb.h:27
std::shared_ptr< dvbt2_interleaver_bb > sptr
Definition: dvbt2_interleaver_bb.h:29
static sptr make(dvb_framesize_t framesize, dvb_code_rate_t rate, dvb_constellation_t constellation)
Create a DVB-T2 bit interleaver.
#define DTV_API
Definition: gr-dtv/include/gnuradio/dtv/api.h:18
dvb_code_rate_t
Definition: dvb_config.h:19
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