GNU Radio Manual and C++ API Reference  3.7.5.1
The Free & Open Software Radio Ecosystem
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
gr-dtv/lib/atsc/interleaver_fifo.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  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  *
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING. If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22 
23 #ifndef _INTERLEAVER_FIFO_H_
24 #define _INTERLEAVER_FIFO_H_
25 
26 #include <string.h>
27 
28 /*!
29  * \brief template class for interleaver fifo
30  */
31 
32 template<class symbol_type>
33 class interleaver_fifo {
34  public:
35 
36  interleaver_fifo (unsigned int size);
38 
39  //! reset interleaver (flushes contents and resets commutator)
40  void reset ();
41 
42  //! stuff a symbol into the fifo and return the oldest
43  symbol_type stuff (symbol_type input){
44  if (m_size == 0)
45  return input;
46 
47  symbol_type retval = m_fifo[m_position];
48  m_fifo[m_position] = input;
49  m_position++;
50  if (m_position >= m_size)
51  m_position = 0;
52 
53  return retval;
54  }
55 
56 protected:
57  unsigned int m_size;
58  unsigned int m_position;
59  symbol_type *m_fifo;
60 };
61 
62 template<class symbol_type>
64 {
65  m_size = size;
66  m_position = 0;
67  m_fifo = new symbol_type[size];
68  memset (m_fifo, 0, m_size * sizeof (symbol_type));
69 }
70 
71 template<class symbol_type>
73 {
74  delete [] m_fifo;
75 }
76 
77 template<class symbol_type> void
79 {
80  m_position = 0;
81  memset (m_fifo, 0, m_size * sizeof (symbol_type));
82 }
83 
84 #endif /* _INTERLEAVER_FIFO_H_ */
void reset()
reset interleaver (flushes contents and resets commutator)
Definition: gr-atsc/include/gnuradio/atsc/interleaver_fifo.h:80
interleaver_fifo(unsigned int size)
Definition: gr-atsc/include/gnuradio/atsc/interleaver_fifo.h:65
symbol_type * m_fifo
Definition: gr-atsc/include/gnuradio/atsc/interleaver_fifo.h:61
template class for interleaver fifo
Definition: gr-atsc/include/gnuradio/atsc/interleaver_fifo.h:35
~interleaver_fifo()
Definition: gr-atsc/include/gnuradio/atsc/interleaver_fifo.h:74
unsigned int m_position
Definition: gr-atsc/include/gnuradio/atsc/interleaver_fifo.h:60
unsigned int m_size
Definition: gr-atsc/include/gnuradio/atsc/interleaver_fifo.h:59
symbol_type stuff(symbol_type input)
stuff a symbol into the fifo and return the oldest
Definition: gr-dtv/lib/atsc/interleaver_fifo.h:43