37f3d24764abed4c5cc34cc9fcdf516a56ead952
[dcpomatic.git] / test / audio_mapping_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/audio_mapping_test.cc
23  *  @brief Test AudioMapping class.
24  *  @ingroup selfcontained
25  */
26
27
28 #include <boost/test/unit_test.hpp>
29 #include "lib/audio_mapping.h"
30 #include "lib/constants.h"
31 #include "lib/compose.hpp"
32
33
34 using std::list;
35 using std::string;
36 using boost::optional;
37
38
39 BOOST_AUTO_TEST_CASE (audio_mapping_test)
40 {
41         AudioMapping none;
42         BOOST_CHECK_EQUAL (none.input_channels(), 0);
43
44         AudioMapping four (4, MAX_DCP_AUDIO_CHANNELS);
45         BOOST_CHECK_EQUAL (four.input_channels(), 4);
46
47         four.set (0, 1, 1);
48
49         for (int i = 0; i < 4; ++i) {
50                 for (int j = 0; j < MAX_DCP_AUDIO_CHANNELS; ++j) {
51                         BOOST_CHECK_EQUAL (four.get(i, j), (i == 0 && j == 1) ? 1 : 0);
52                 }
53         }
54
55         auto mapped = four.mapped_output_channels ();
56         BOOST_CHECK_EQUAL (mapped.size(), 1U);
57         BOOST_CHECK_EQUAL (mapped.front(), 1);
58
59         four.make_zero ();
60
61         for (int i = 0; i < 4; ++i) {
62                 for (int j = 0; j < MAX_DCP_AUDIO_CHANNELS; ++j) {
63                         BOOST_CHECK_EQUAL (four.get (i, j), 0);
64                 }
65         }
66 }
67
68
69 static void
70 guess_check (boost::filesystem::path filename, int output_channel)
71 {
72         AudioMapping m (1, 8);
73         m.make_default (0, filename);
74         for (int i = 0; i < 8; ++i) {
75                 BOOST_TEST_INFO (String::compose("%1 channel %2", filename, i));
76                 BOOST_CHECK_CLOSE (m.get(0, i), i == output_channel ? 1 : 0, 0.01);
77         }
78 }
79
80
81 BOOST_AUTO_TEST_CASE (audio_mapping_guess_test)
82 {
83         guess_check ("stuff_L_nonsense.wav", 0);
84         guess_check ("stuff_nonsense.wav", 2);
85         guess_check ("fred_R.wav", 1);
86         guess_check ("jim_C_sheila.aiff", 2);
87         guess_check ("things_Lfe_and.wav", 3);
88         guess_check ("weeee_Ls.aiff", 4);
89         guess_check ("try_Rs-it.wav", 5);
90
91         /* PT-style */
92         guess_check ("things_LFE.wav", 3);
93         guess_check ("ptish_Lsr_abc.wav", 6);
94         guess_check ("ptish_Rsr_abc.wav", 7);
95         guess_check ("more_Lss_s.wav", 4);
96         guess_check ("other_Rss.aiff", 5);
97
98         /* Only the filename should be taken into account */
99         guess_check ("-Lfe-/foo_L.wav", 0);
100
101         /* Dolby-style */
102         guess_check ("jake-Lrs-good.wav", 6);
103         guess_check ("elwood-Rrs-good.wav", 7);
104 }
105
106