Some basics of AudioMapping.
[dcpomatic.git] / src / lib / audio_mapping.h
1 /* -*- c-basic-offset: 8; default-tab-width: 8; -*- */
2
3 /*
4     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
5
6     This program 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     This program 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 this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 */
21
22 #ifndef DCPOMATIC_AUDIO_MAPPING_H
23 #define DCPOMATIC_AUDIO_MAPPING_H
24
25 #include <list>
26 #include <libdcp/types.h>
27 #include <boost/shared_ptr.hpp>
28
29 namespace xmlpp {
30         class Node;
31 }
32
33 namespace cxml {
34         class Node;
35 }
36
37 class AudioMapping
38 {
39 public:
40         AudioMapping ();
41         AudioMapping (int);
42         AudioMapping (boost::shared_ptr<const cxml::Node>);
43         
44         void as_xml (xmlpp::Node *) const;
45
46         void add (int, libdcp::Channel);
47
48         std::list<int> dcp_to_content (libdcp::Channel) const;
49         std::list<std::pair<int, libdcp::Channel> > content_to_dcp () const {
50                 return _content_to_dcp;
51         }
52
53         std::list<int> content_channels () const;
54         std::list<libdcp::Channel> content_to_dcp (int) const;
55
56 private:
57         std::list<std::pair<int, libdcp::Channel> > _content_to_dcp;
58 };
59
60 #endif