Add UpmixerB.
[dcpomatic.git] / test / audio_processor_delay_test.cc
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "lib/audio_delay.h"
21 #include "lib/audio_buffers.h"
22 #include <boost/test/unit_test.hpp>
23 #include <cmath>
24
25 using std::cerr;
26 using std::cout;
27 using boost::shared_ptr;
28
29 #define CHECK_SAMPLE(c,f,r) \
30         if (fabs(out->data(c)[f] - (r)) > 0.1) {                        \
31                 cerr << "Sample " << f << " at line " << __LINE__ << " is " << out->data(c)[f] << " not " << r << "; difference is " << fabs(out->data(c)[f] - (r)) << "\n"; \
32                 BOOST_REQUIRE (fabs(out->data(c)[f] - (r)) <= 0.1);     \
33         }
34
35 /** Block size greater than delay */
36 BOOST_AUTO_TEST_CASE (audio_processor_delay_test1)
37 {
38         AudioDelay delay (64);
39
40         int const C = 2;
41
42         shared_ptr<AudioBuffers> in (new AudioBuffers (C, 256));
43         for (int i = 0; i < C; ++i) {
44                 for (int j = 0; j < 256; ++j) {
45                         in->data(i)[j] = j;
46                 }
47         }
48
49         shared_ptr<AudioBuffers> out = delay.run (in);
50         BOOST_REQUIRE_EQUAL (out->frames(), in->frames());
51
52         /* Silence at the start */
53         for (int i = 0; i < C; ++i) {
54                 for (int j = 0; j < 64; ++j) {
55                         CHECK_SAMPLE (i, j, 0);
56                 }
57         }
58
59         /* Then the delayed data */
60         for (int i = 0; i < C; ++i) {
61                 for (int j = 64; j < 256; ++j) {
62                         CHECK_SAMPLE (i, j, j - 64);
63                 }
64         }
65
66         /* Feed some more in */
67         for (int i = 0; i < C; ++i) {
68                 for (int j = 0; j < 256; ++j) {
69                         in->data(i)[j] = j + 256;
70                 }
71         }
72         out = delay.run (in);
73
74         /* Check again */
75         for (int i = 0; i < C; ++i) {
76                 for (int j = 256; j < 512; ++j) {
77                         CHECK_SAMPLE (i, j - 256, j - 64);
78                 }
79         }
80 }
81
82 /** Block size less than delay */
83 BOOST_AUTO_TEST_CASE (audio_processor_delay_test2)
84 {
85         AudioDelay delay (256);
86
87         int const C = 2;
88
89         /* Feeding 4 blocks of 64 should give silence each time */
90
91         for (int i = 0; i < 4; ++i) {
92                 cout << "i=" << i << "\n";
93                 shared_ptr<AudioBuffers> in (new AudioBuffers (C, 64));
94                 for (int j = 0; j < C; ++j) {
95                         for (int k = 0; k < 64; ++k) {
96                                 in->data(j)[k] = k + i * 64;
97                         }
98                 }
99
100                 shared_ptr<AudioBuffers> out = delay.run (in);
101                 BOOST_REQUIRE_EQUAL (out->frames(), in->frames());
102
103                 /* Check for silence */
104                 for (int j = 0; j < C; ++j) {
105                         for (int k = 0; k < 64; ++k) {
106                                 CHECK_SAMPLE (j, k, 0);
107                         }
108                 }
109         }
110
111         /* Now feed 4 blocks of silence and we should see the data */
112         for (int i = 0; i < 4; ++i) {
113                 /* Feed some silence */
114                 shared_ptr<AudioBuffers> in (new AudioBuffers (C, 64));
115                 in->make_silent ();
116                 shared_ptr<AudioBuffers> out = delay.run (in);
117
118                 /* Should now see the delayed data */
119                 for (int j = 0; j < C; ++j) {
120                         for (int k = 0; k < 64; ++k) {
121                                 CHECK_SAMPLE (j, k, k + i * 64);
122                         }
123                 }
124         }
125 }