Improve audio mapping handling a bit.
[dcpomatic.git] / src / lib / audio_content.cc
1 /*
2     Copyright (C) 2013 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 #include <libcxml/cxml.h>
21 #include "audio_content.h"
22
23 using std::string;
24 using boost::shared_ptr;
25 using boost::lexical_cast;
26
27 int const AudioContentProperty::AUDIO_CHANNELS = 200;
28 int const AudioContentProperty::AUDIO_LENGTH = 201;
29 int const AudioContentProperty::AUDIO_FRAME_RATE = 202;
30 int const AudioContentProperty::AUDIO_GAIN = 203;
31 int const AudioContentProperty::AUDIO_DELAY = 204;
32 int const AudioContentProperty::AUDIO_MAPPING = 205;
33
34 AudioContent::AudioContent (shared_ptr<const Film> f, Time s)
35         : Content (f, s)
36         , _audio_gain (0)
37         , _audio_delay (0)
38 {
39
40 }
41
42 AudioContent::AudioContent (shared_ptr<const Film> f, boost::filesystem::path p)
43         : Content (f, p)
44         , _audio_gain (0)
45         , _audio_delay (0)
46 {
47
48 }
49
50 AudioContent::AudioContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
51         : Content (f, node)
52 {
53         _audio_gain = node->number_child<float> ("AudioGain");
54         _audio_delay = node->number_child<int> ("AudioDelay");
55 }
56
57 AudioContent::AudioContent (AudioContent const & o)
58         : Content (o)
59         , _audio_gain (o._audio_gain)
60         , _audio_delay (o._audio_delay)
61 {
62
63 }
64
65 void
66 AudioContent::as_xml (xmlpp::Node* node) const
67 {
68         boost::mutex::scoped_lock lm (_mutex);
69         node->add_child("AudioGain")->add_child_text (lexical_cast<string> (_audio_gain));
70         node->add_child("AudioDelay")->add_child_text (lexical_cast<string> (_audio_delay));
71 }
72
73
74 void
75 AudioContent::set_audio_gain (float g)
76 {
77         {
78                 boost::mutex::scoped_lock lm (_mutex);
79                 _audio_gain = g;
80         }
81         
82         signal_changed (AudioContentProperty::AUDIO_GAIN);
83 }
84
85 void
86 AudioContent::set_audio_delay (int d)
87 {
88         {
89                 boost::mutex::scoped_lock lm (_mutex);
90                 _audio_delay = d;
91         }
92         
93         signal_changed (AudioContentProperty::AUDIO_DELAY);
94 }
95