GNU Radio Manual and C++ API Reference  3.7.4.1
The Free & Open Software Radio Ecosystem
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
repetition_decoder.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 INCLUDED_FEC_REPETITION_DECODER_H
24 #define INCLUDED_FEC_REPETITION_DECODER_H
25 
26 #include <gnuradio/fec/api.h>
28 #include <map>
29 #include <string>
30 
31 namespace gr {
32  namespace fec {
33  namespace code {
34 
35  /*!
36  * \brief Repetition Decoding class.
37  * \ingroup error_coding_blk
38  *
39  * \details
40  * A repetition decoder class. This takes a majority vote,
41  * biased by the \p ap_prob rate, and decides if the number of 1
42  * bits > ap_prob, it is a 1; else, it is a 0.
43  */
45  {
46  public:
47 
48  /*!
49  * Build a repetition decoding FEC API object.
50  *
51  * \param frame_size Number of bits per frame. If using in the
52  * tagged stream style, this is the maximum allowable
53  * number of bits per frame.
54  * \param rep Repetition rate; encoder rate is rep bits out
55  * for each input bit.
56  * \param ap_prob The a priori probability that a bit is a 1
57  * (generally, unless otherwise known, assume to be
58  * 0.5).
59  */
60  static generic_decoder::sptr make(int frame_size, int rep,
61  float ap_prob=0.5);
62 
63  /*!
64  * Sets the uncoded frame size to \p frame_size. If \p
65  * frame_size is greater than the value given to the
66  * constructor, the frame size will be capped by that initial
67  * value and this function will return false. Otherwise, it
68  * returns true.
69  */
70  virtual bool set_frame_size(unsigned int frame_size) = 0;
71 
72  /*!
73  * Returns the coding rate of this encoder (it will always be 1).
74  */
75  virtual double rate() = 0;
76  };
77 
78  } /* namespace code */
79  } /* namespace fec */
80 } /* namespace gr */
81 
82 #endif /* INCLUDED_FEC_REPETITION_DECODER_H */
Parent class for FECAPI objects.
Definition: generic_decoder.h:60
shared_ptr documentation stub
Definition: shared_ptr_docstub.h:15
Repetition Decoding class.
Definition: repetition_decoder.h:44
#define FEC_API
Definition: gr-fec/include/gnuradio/fec/api.h:30