Missed update to private test repo version.
[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::unique_ptr;
31 using std::vector;
32
33
34 vector<unique_ptr<const AudioProcessor>> AudioProcessor::_experimental;
35 vector<unique_ptr<const AudioProcessor>> AudioProcessor::_non_experimental;
36
37
38 void
39 AudioProcessor::setup_audio_processors ()
40 {
41         _non_experimental.push_back (unique_ptr<AudioProcessor>(new MidSideDecoder()));
42
43         _experimental.push_back (unique_ptr<AudioProcessor>(new UpmixerA(48000)));
44         _experimental.push_back (unique_ptr<AudioProcessor>(new UpmixerB(48000)));
45 }
46
47
48 AudioProcessor const *
49 AudioProcessor::from_id (string id)
50 {
51         for (auto& i: _non_experimental) {
52                 if (i->id() == id) {
53                         return i.get();
54                 }
55         }
56
57         for (auto& i: _experimental) {
58                 if (i->id() == id) {
59                         return i.get();
60                 }
61         }
62
63         return nullptr;
64 }
65
66
67 vector<AudioProcessor const *>
68 AudioProcessor::visible ()
69 {
70         vector<AudioProcessor const *> raw;
71         if (Config::instance()->show_experimental_audio_processors()) {
72                 for (auto& processor: _experimental) {
73                         raw.push_back (processor.get());
74                 }
75         }
76
77         for (auto& processor: _non_experimental) {
78                 raw.push_back (processor.get());
79         }
80
81         return raw;
82 }
83
84
85 vector<AudioProcessor const *>
86 AudioProcessor::all ()
87 {
88         vector<AudioProcessor const *> raw;
89         for (auto& processor: _experimental) {
90                 raw.push_back (processor.get());
91         }
92
93         for (auto& processor: _non_experimental) {
94                 raw.push_back (processor.get());
95         }
96
97         return raw;
98 }