Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / audio_mapping.h
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/lib/audio_mapping.h
21  *  @brief AudioMapping class.
22  */
23
24 #ifndef DCPOMATIC_AUDIO_MAPPING_H
25 #define DCPOMATIC_AUDIO_MAPPING_H
26
27 #include <libcxml/cxml.h>
28 #include <vector>
29
30 namespace xmlpp {
31         class Node;
32 }
33
34 /** @class AudioMapping.
35  *  @brief A many-to-many mapping of audio channels.
36  */
37 class AudioMapping
38 {
39 public:
40         AudioMapping ();
41         AudioMapping (int input_channels, int output_channels);
42         AudioMapping (cxml::ConstNodePtr, int);
43
44         /* Default copy constructor is fine */
45
46         void as_xml (xmlpp::Node *) const;
47
48         void make_zero ();
49
50         void set (int input_channel, int output_channel, float);
51         float get (int input_channel, int output_channel) const;
52
53         int input_channels () const {
54                 return _input_channels;
55         }
56
57         int output_channels () const {
58                 return _output_channels;
59         }
60
61         std::string digest () const;
62
63         std::list<int> mapped_output_channels () const;
64         void unmap_all ();
65
66 private:
67         void setup (int input_channels, int output_channels);
68
69         int _input_channels;
70         int _output_channels;
71         std::vector<std::vector<float> > _gain;
72 };
73
74 #endif