Updated FSF address in all files. Fixes ticket:51
[debian/gnuradio] / gr-atsc / src / lib / atsci_basic_trellis_encoder.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2002 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 2, 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 #include <atsci_basic_trellis_encoder.h>
24 #include <assert.h>
25
26 const unsigned char atsci_basic_trellis_encoder::next_state[32] = {
27   0,1,4,5,
28   2,3,6,7,
29   1,0,5,4,
30   3,2,7,6,
31   4,5,0,1,
32   6,7,2,3,
33   5,4,1,0,
34   7,6,3,2
35 };
36
37 const unsigned char atsci_basic_trellis_encoder::out_symbol[32] = {
38   0,2,4,6,
39   1,3,5,7,
40   0,2,4,6,
41   1,3,5,7,
42   4,6,0,2,
43   5,7,1,3,
44   4,6,0,2,
45   5,7,1,3
46 };
47
48
49 /*!
50  * Encode two bit INPUT into 3 bit return value.  Domain is [0,3],
51  * Range is [0,7].  The mapping to bipolar levels is not done.
52  */
53
54 int
55 atsci_basic_trellis_encoder::encode (unsigned int input)
56 {
57   assert (input < 4);
58   int index = (state << 2) + input; 
59   state = next_state[index];
60   return out_symbol[index];
61 }
62