GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
catv_reed_solomon_enc_bb.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2016 Free Software Foundation, Inc.
4  *
5  * SPDX-License-Identifier: GPL-3.0-or-later
6  *
7  */
8 
9 #ifndef INCLUDED_DTV_CATV_REED_SOLOMON_ENC_BB_H
10 #define INCLUDED_DTV_CATV_REED_SOLOMON_ENC_BB_H
11 
12 #include <gnuradio/block.h>
13 #include <gnuradio/dtv/api.h>
14 
15 namespace gr {
16 namespace dtv {
17 
18 /*!
19  * \brief Reed Solomon Encoder, t=3, (128,122), 7-bit symbols.
20  * \ingroup dtv
21  *
22  * Input: MPEG-2 bitstream packets of 122 7-bit symbols.\n
23  * Output: MPEG-2 + RS parity bitstream packets of 128 7-bit symbols.
24  */
26 {
27 public:
28  typedef std::shared_ptr<catv_reed_solomon_enc_bb> sptr;
29 
30  /*!
31  * \brief Create an ITU-T J.83B Reed Solomon encoder.
32  *
33  */
34  static sptr make();
35 };
36 
37 } // namespace dtv
38 } // namespace gr
39 
40 #endif /* INCLUDED_DTV_CATV_REED_SOLOMON_ENC_BB_H */
The abstract base class for all 'terminal' processing blocks.
Definition: gnuradio-runtime/include/gnuradio/block.h:63
Reed Solomon Encoder, t=3, (128,122), 7-bit symbols.
Definition: catv_reed_solomon_enc_bb.h:26
static sptr make()
Create an ITU-T J.83B Reed Solomon encoder.
std::shared_ptr< catv_reed_solomon_enc_bb > sptr
Definition: catv_reed_solomon_enc_bb.h:28
#define DTV_API
Definition: gr-dtv/include/gnuradio/dtv/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29