Supporters update.
[dcpomatic.git] / src / lib / cinema_sound_processor.h
1 /*
2     Copyright (C) 2012-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 src/cinema_sound_processor.h
23  *  @brief CinemaSoundProcessor class
24  */
25
26
27 #ifndef DCPOMATIC_CINEMA_SOUND_PROCESSOR_H
28 #define DCPOMATIC_CINEMA_SOUND_PROCESSOR_H
29
30
31 #include <boost/utility.hpp>
32 #include <memory>
33 #include <string>
34 #include <vector>
35
36
37 /** @class CinemaSoundProcessor
38  *  @brief Class to describe a cimema's sound processor.
39  *
40  *  In other words, the box in the rack that handles sound decoding and processing
41  *  in a cinema.
42  */
43 class CinemaSoundProcessor
44 {
45 public:
46         CinemaSoundProcessor (std::string i, std::string n, float knee, float below, float above);
47         virtual ~CinemaSoundProcessor () {}
48
49         CinemaSoundProcessor (CinemaSoundProcessor const&) = delete;
50         CinemaSoundProcessor& operator=(CinemaSoundProcessor const&) = delete;
51
52         float db_for_fader_change (float from, float to) const;
53
54         /** @return id for our use */
55         std::string id () const {
56                 return _id;
57         }
58
59         /** @return user-visible name for this sound processor */
60         std::string name () const {
61                 return _name;
62         }
63
64         static std::vector<CinemaSoundProcessor const *> all ();
65         static void setup_cinema_sound_processors ();
66         static CinemaSoundProcessor const * from_id (std::string id);
67         static CinemaSoundProcessor const * from_index (int);
68
69 private:
70         /** id for our use */
71         std::string _id;
72         /** user-visible name for this sound processor */
73         std::string _name;
74         float _knee;
75         float _below;
76         float _above;
77
78         /** all available cinema sound processors */
79         static std::vector<std::unique_ptr<const CinemaSoundProcessor>> _cinema_sound_processors;
80 };
81
82
83 #endif