Tidying.
[libdcp.git] / src / fsk.cc
1 /*
2     Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     libdcp is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34
35 /** @file  src/fsk.cc
36  *  @brief FSK class
37  */
38
39
40 #include "fsk.h"
41 #include <iostream>
42
43
44 using std::cout;
45 using std::vector;
46 using namespace dcp;
47
48
49 FSK::FSK ()
50 {
51
52 }
53
54
55 void
56 FSK::set_data (vector<bool> data)
57 {
58         _data = data;
59         _data_position = _sample_position = 0;
60 }
61
62
63 int32_t
64 FSK::get ()
65 {
66         static int const twenty_four_bit = 8388608; // 2^23
67
68         static int const lut[4][2] = {
69                 // sample 0
70                 {
71                         int( 0.03827 * twenty_four_bit), // 0
72                         int( 0.07071 * twenty_four_bit), // 1
73                 },
74                 // sample 1
75                 {
76                         int( 0.09239 * twenty_four_bit), // 0
77                         int( 0.07071 * twenty_four_bit), // 1
78                 },
79                 // sample 2
80                 {
81                         int( 0.09239 * twenty_four_bit), // 0
82                         int(-0.07071 * twenty_four_bit), // 1
83                 },
84                 // sample 3
85                 {
86                         int( 0.03827 * twenty_four_bit), // 0
87                         int(-0.07071 * twenty_four_bit), // 1
88                 }
89         };
90
91         /* The bit we are working on */
92         bool const bit = _data[_data_position];
93         /* Get the +ve version of the required sample */
94         int sample = lut[_sample_position][bit];
95
96         bool polarity = _last_polarity;
97         if (_sample_position == 0 && _last_bit == false) {
98                 /* We're starting a new bit, and the last one was 0 so we need to flip
99                  * the polarity we are using.
100                  */
101                 polarity = !polarity;
102         }
103
104         /* Obey the required polarity for this sample */
105         if (polarity == false) {
106                 sample = -sample;
107         }
108
109         /* Get ready for next time */
110
111         _last_bit = bit;
112         _last_polarity = polarity;
113
114         ++_sample_position;
115         if (_sample_position == 4) {
116                 _sample_position = 0;
117                 ++_data_position;
118         }
119
120         return sample;
121 }
122