Fix the build for older macOS.
[dcpomatic.git] / src / lib / audio_processor.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 #include "audio_processor.h"
23 #include "config.h"
24 #include "mid_side_decoder.h"
25 #include "upmixer_a.h"
26 #include "upmixer_b.h"
27
28
29 using std::string;
30 using std::list;
31
32
33 list<AudioProcessor const *> AudioProcessor::_all;
34 list<AudioProcessor const *> AudioProcessor::_non_experimental;
35
36
37 void
38 AudioProcessor::setup_audio_processors ()
39 {
40         auto mid_side = new MidSideDecoder ();
41         _all.push_back (mid_side);
42         _non_experimental.push_back (mid_side);
43
44         _all.push_back (new UpmixerA(48000));
45         _all.push_back (new UpmixerB(48000));
46 }
47
48
49 AudioProcessor const *
50 AudioProcessor::from_id (string id)
51 {
52         for (auto i: _all) {
53                 if (i->id() == id) {
54                         return i;
55                 }
56         }
57
58         return nullptr;
59 }
60
61
62 list<AudioProcessor const *>
63 AudioProcessor::visible ()
64 {
65         if (Config::instance()->show_experimental_audio_processors()) {
66                 return _all;
67         }
68
69         return _non_experimental;
70 }
71
72
73 list<AudioProcessor const *>
74 AudioProcessor::all ()
75 {
76         return _all;
77 }