C++11 tidying.
[dcpomatic.git] / test / upmixer_a_test.cc
1 /*
2     Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic 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     DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 /** @file  test/upmixer_a_test.cc
23  *  @brief Check the Upmixer A against some reference sound files.
24  *  @ingroup selfcontained
25  */
26
27
28 #include "lib/audio_buffers.h"
29 #include "lib/dcp_content_type.h"
30 #include "lib/ffmpeg_content.h"
31 #include "lib/film.h"
32 #include "lib/player.h"
33 #include "lib/ratio.h"
34 #include "lib/upmixer_a.h"
35 #include "test.h"
36 #include <sndfile.h>
37 #include <boost/test/unit_test.hpp>
38
39
40 using std::make_shared;
41 using std::shared_ptr;
42 #if BOOST_VERSION >= 106100
43 using namespace boost::placeholders;
44 #endif
45 using namespace dcpomatic;
46
47
48 static SNDFILE* L;
49 static SNDFILE* R;
50 static SNDFILE* C;
51 static SNDFILE* Lfe;
52 static SNDFILE* Ls;
53 static SNDFILE* Rs;
54
55
56 static void
57 write (shared_ptr<AudioBuffers> b, DCPTime)
58 {
59         sf_write_float (L, b->data(0), b->frames());
60         sf_write_float (R, b->data(1), b->frames());
61         sf_write_float (C, b->data(2), b->frames());
62         sf_write_float (Lfe, b->data(3), b->frames());
63         sf_write_float (Ls, b->data(4), b->frames());
64         sf_write_float (Rs, b->data(5), b->frames());
65
66 }
67
68
69 BOOST_AUTO_TEST_CASE (upmixer_a_test)
70 {
71         auto film = new_test_film ("upmixer_a_test");
72         film->set_container (Ratio::from_id("185"));
73         film->set_dcp_content_type (DCPContentType::from_isdcf_name("TLR"));
74         film->set_name ("frobozz");
75         film->set_audio_processor (AudioProcessor::from_id("stereo-5.1-upmix-a"));
76         auto content = make_shared<FFmpegContent>("test/data/white.wav");
77         film->examine_and_add_content (content);
78
79         BOOST_REQUIRE (!wait_for_jobs());
80
81         SF_INFO info;
82         info.samplerate = 48000;
83         info.channels = 1;
84         info.format = SF_FORMAT_WAV | SF_FORMAT_PCM_16;
85         L = sf_open ("build/test/upmixer_a_test/L.wav", SFM_WRITE, &info);
86         R = sf_open ("build/test/upmixer_a_test/R.wav", SFM_WRITE, &info);
87         C = sf_open ("build/test/upmixer_a_test/C.wav", SFM_WRITE, &info);
88         Lfe = sf_open ("build/test/upmixer_a_test/Lfe.wav", SFM_WRITE, &info);
89         Ls = sf_open ("build/test/upmixer_a_test/Ls.wav", SFM_WRITE, &info);
90         Rs = sf_open ("build/test/upmixer_a_test/Rs.wav", SFM_WRITE, &info);
91
92         auto player = make_shared<Player>(film);
93         player->Audio.connect (bind (&write, _1, _2));
94         while (!player->pass()) {}
95
96         sf_close (L);
97         sf_close (R);
98         sf_close (C);
99         sf_close (Lfe);
100         sf_close (Ls);
101         sf_close (Rs);
102
103         check_wav_file ("test/data/upmixer_a_test/L.wav", "build/test/upmixer_a_test/L.wav");
104         check_wav_file ("test/data/upmixer_a_test/R.wav", "build/test/upmixer_a_test/R.wav");
105         check_wav_file ("test/data/upmixer_a_test/C.wav", "build/test/upmixer_a_test/C.wav");
106         check_wav_file ("test/data/upmixer_a_test/Lfe.wav", "build/test/upmixer_a_test/Lfe.wav");
107         check_wav_file ("test/data/upmixer_a_test/Ls.wav", "build/test/upmixer_a_test/Ls.wav");
108         check_wav_file ("test/data/upmixer_a_test/Rs.wav", "build/test/upmixer_a_test/Rs.wav");
109 }