Fix crash on double-click of show-audio button.
[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 #include "analyse_audio_job.h"
23 #include "job_manager.h"
24 #include "film.h"
25 #include "exceptions.h"
26
27 #include "i18n.h"
28
29 using std::string;
30 using std::vector;
31 using boost::shared_ptr;
32 using boost::lexical_cast;
33 using boost::dynamic_pointer_cast;
34
35 int const AudioContentProperty::AUDIO_CHANNELS = 200;
36 int const AudioContentProperty::AUDIO_LENGTH = 201;
37 int const AudioContentProperty::AUDIO_FRAME_RATE = 202;
38 int const AudioContentProperty::AUDIO_GAIN = 203;
39 int const AudioContentProperty::AUDIO_DELAY = 204;
40 int const AudioContentProperty::AUDIO_MAPPING = 205;
41
42 AudioContent::AudioContent (shared_ptr<const Film> f, Time s)
43         : Content (f, s)
44         , _audio_gain (0)
45         , _audio_delay (0)
46 {
47
48 }
49
50 AudioContent::AudioContent (shared_ptr<const Film> f, boost::filesystem::path p)
51         : Content (f, p)
52         , _audio_gain (0)
53         , _audio_delay (0)
54 {
55
56 }
57
58 AudioContent::AudioContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
59         : Content (f, node)
60 {
61         LocaleGuard lg;
62         
63         _audio_gain = node->number_child<float> ("AudioGain");
64         _audio_delay = node->number_child<int> ("AudioDelay");
65 }
66
67 AudioContent::AudioContent (shared_ptr<const Film> f, vector<shared_ptr<Content> > c)
68         : Content (f, c)
69 {
70         shared_ptr<AudioContent> ref = dynamic_pointer_cast<AudioContent> (c[0]);
71         assert (ref);
72         
73         for (size_t i = 0; i < c.size(); ++i) {
74                 shared_ptr<AudioContent> ac = dynamic_pointer_cast<AudioContent> (c[i]);
75
76                 if (ac->audio_gain() != ref->audio_gain()) {
77                         throw JoinError (_("Content to be joined must have the same audio gain."));
78                 }
79
80                 if (ac->audio_delay() != ref->audio_delay()) {
81                         throw JoinError (_("Content to be joined must have the same audio delay."));
82                 }
83         }
84
85         _audio_gain = ref->audio_gain ();
86         _audio_delay = ref->audio_delay ();
87 }
88
89 void
90 AudioContent::as_xml (xmlpp::Node* node) const
91 {
92         LocaleGuard lg;
93         
94         boost::mutex::scoped_lock lm (_mutex);
95         node->add_child("AudioGain")->add_child_text (lexical_cast<string> (_audio_gain));
96         node->add_child("AudioDelay")->add_child_text (lexical_cast<string> (_audio_delay));
97 }
98
99
100 void
101 AudioContent::set_audio_gain (float g)
102 {
103         {
104                 boost::mutex::scoped_lock lm (_mutex);
105                 _audio_gain = g;
106         }
107         
108         signal_changed (AudioContentProperty::AUDIO_GAIN);
109 }
110
111 void
112 AudioContent::set_audio_delay (int d)
113 {
114         {
115                 boost::mutex::scoped_lock lm (_mutex);
116                 _audio_delay = d;
117         }
118         
119         signal_changed (AudioContentProperty::AUDIO_DELAY);
120 }
121
122 boost::signals2::connection
123 AudioContent::analyse_audio (boost::function<void()> finished)
124 {
125         shared_ptr<const Film> film = _film.lock ();
126         assert (film);
127         
128         shared_ptr<AnalyseAudioJob> job (new AnalyseAudioJob (film, dynamic_pointer_cast<AudioContent> (shared_from_this())));
129         boost::signals2::connection c = job->Finished.connect (finished);
130         JobManager::instance()->add (job);
131
132         return c;
133 }
134
135 boost::filesystem::path
136 AudioContent::audio_analysis_path () const
137 {
138         shared_ptr<const Film> film = _film.lock ();
139         if (!film) {
140                 return boost::filesystem::path ();
141         }
142
143         return film->audio_analysis_path (dynamic_pointer_cast<const AudioContent> (shared_from_this ()));
144 }
145
146 string
147 AudioContent::technical_summary () const
148 {
149         return String::compose ("audio: channels %1, length %2, raw rate %3, out rate %4", audio_channels(), audio_length(), content_audio_frame_rate(), output_audio_frame_rate());
150 }