GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
catv_transport_framing_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_TRANSPORT_FRAMING_ENC_BB_H
10 #define INCLUDED_DTV_CATV_TRANSPORT_FRAMING_ENC_BB_H
11 
12 #include <gnuradio/dtv/api.h>
13 #include <gnuradio/sync_block.h>
14 
15 namespace gr {
16 namespace dtv {
17 
18 /*!
19  * \brief Transport Framing Encoder. Adds a parity checksum to MPEG-2 packets.
20  * \ingroup dtv
21  *
22  * Input: MPEG-2 Transport Stream.\n
23  * Output: MPEG-2 Transport Stream with parity checksum byte.
24  */
26 {
27 public:
28  typedef std::shared_ptr<catv_transport_framing_enc_bb> sptr;
29 
30  /*!
31  * \brief Create an ITU-T J.83B Transport Framing Encoder.
32  *
33  */
34  static sptr make();
35 };
36 
37 } // namespace dtv
38 } // namespace gr
39 
40 #endif /* INCLUDED_DTV_CATV_TRANSPORT_FRAMING_ENC_BB_H */
Transport Framing Encoder. Adds a parity checksum to MPEG-2 packets.
Definition: catv_transport_framing_enc_bb.h:26
std::shared_ptr< catv_transport_framing_enc_bb > sptr
Definition: catv_transport_framing_enc_bb.h:28
static sptr make()
Create an ITU-T J.83B Transport Framing Encoder.
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
GNU Radio logging wrapper.
Definition: basic_block.h:29