GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
atsc_deinterleaver.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2014 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef INCLUDED_DTV_ATSC_DEINTERLEAVER_H
12 #define INCLUDED_DTV_ATSC_DEINTERLEAVER_H
13 
14 #include <gnuradio/dtv/api.h>
15 #include <gnuradio/sync_block.h>
16 
17 namespace gr {
18 namespace dtv {
19 
20 /*!
21  * \brief ATSC deinterleave RS encoded ATSC data ( atsc_mpeg_packet_rs_encoded -->
22  * atsc_mpeg_packet_rs_encoded) \ingroup dtv_atsc
23  *
24  * input: atsc_mpeg_packet_rs_encoded; output: atsc_mpeg_packet_rs_encoded
25  */
27 {
28 public:
29  // gr::dtv::atsc_deinterleaver::sptr
30  typedef std::shared_ptr<atsc_deinterleaver> sptr;
31 
32  /*!
33  * \brief Make a new instance of gr::dtv::atsc_deinterleaver.
34  */
35  static sptr make();
36 };
37 
38 } /* namespace dtv */
39 } /* namespace gr */
40 
41 #endif /* INCLUDED_DTV_ATSC_DEINTERLEAVER_H */
ATSC deinterleave RS encoded ATSC data ( atsc_mpeg_packet_rs_encoded --> atsc_mpeg_packet_rs_encoded)
Definition: atsc_deinterleaver.h:27
std::shared_ptr< atsc_deinterleaver > sptr
Definition: atsc_deinterleaver.h:30
static sptr make()
Make a new instance of gr::dtv::atsc_deinterleaver.
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