GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
dvbt_convolutional_deinterleaver.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2015 Free Software Foundation, Inc.
4 *
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 *
7 */
8
9#ifndef INCLUDED_DTV_DVBT_CONVOLUTIONAL_DEINTERLEAVER_H
10#define INCLUDED_DTV_DVBT_CONVOLUTIONAL_DEINTERLEAVER_H
11
12#include <gnuradio/block.h>
13#include <gnuradio/dtv/api.h>
14
15namespace gr {
16namespace dtv {
17
18/*!
19 * \brief Convolutional deinterleaver.
20 * \ingroup dtv
21 *
22 * ETSI EN 300 744 Clause 4.3.1 \n
23 * Forney (Ramsey type III) convolutional deinterleaver. \n
24 * Data input: Stream of 1 byte elements. \n
25 * Data output: Blocks of I bytes size.
26 */
28{
29public:
30 typedef std::shared_ptr<dvbt_convolutional_deinterleaver> sptr;
31
32 /*!
33 * \brief Create a DVB-T convolutional deinterleaver.
34 *
35 * \param nsize number of blocks to process. \n
36 * \param I size of a block. \n
37 * \param M depth length for each element in shift registers.
38 */
39 static sptr make(int nsize, int I, int M);
40};
41
42} // namespace dtv
43} // namespace gr
44
45#endif /* INCLUDED_DTV_DVBT_CONVOLUTIONAL_DEINTERLEAVER_H */
The abstract base class for all 'terminal' processing blocks.
Definition: gnuradio-runtime/include/gnuradio/block.h:63
Convolutional deinterleaver.
Definition: dvbt_convolutional_deinterleaver.h:28
static sptr make(int nsize, int I, int M)
Create a DVB-T convolutional deinterleaver.
std::shared_ptr< dvbt_convolutional_deinterleaver > sptr
Definition: dvbt_convolutional_deinterleaver.h:30
#define DTV_API
Definition: gr-dtv/include/gnuradio/dtv/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29