Make sure program version gets into a problem report email.
[dcpomatic.git] / src / lib / single_stream_audio_content.cc
1 /*
2     Copyright (C) 2014-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 #include "single_stream_audio_content.h"
21 #include "audio_examiner.h"
22 #include "film.h"
23 #include "raw_convert.h"
24
25 #include "i18n.h"
26
27 using std::string;
28 using std::cout;
29 using std::vector;
30 using std::list;
31 using std::pair;
32 using boost::shared_ptr;
33
34 SingleStreamAudioContent::SingleStreamAudioContent (shared_ptr<const Film> film)
35         : Content (film)
36         , AudioContent (film)
37 {
38
39 }
40
41 SingleStreamAudioContent::SingleStreamAudioContent (shared_ptr<const Film> film, boost::filesystem::path p)
42         : Content (film, p)
43         , AudioContent (film, p)
44 {
45
46 }
47
48 SingleStreamAudioContent::SingleStreamAudioContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
49         : Content (film, node)
50         , AudioContent (film, node)
51         , _audio_stream (new AudioStream (node->number_child<int> ("AudioFrameRate"), AudioMapping (node->node_child ("AudioMapping"), version)))
52 {
53
54 }
55
56 void
57 SingleStreamAudioContent::as_xml (xmlpp::Node* node) const
58 {
59         AudioContent::as_xml (node);
60         node->add_child("AudioFrameRate")->add_child_text (raw_convert<string> (audio_stream()->frame_rate ()));
61         audio_stream()->mapping().as_xml (node->add_child("AudioMapping"));
62 }
63
64 void
65 SingleStreamAudioContent::take_from_audio_examiner (shared_ptr<AudioExaminer> examiner)
66 {
67         shared_ptr<const Film> film = _film.lock ();
68         DCPOMATIC_ASSERT (film);
69
70         {
71                 boost::mutex::scoped_lock lm (_mutex);
72                 _audio_stream.reset (new AudioStream (examiner->audio_frame_rate(), examiner->audio_channels ()));
73                 AudioMapping m = _audio_stream->mapping ();
74                 film->make_audio_mapping_default (m);
75                 _audio_stream->set_mapping (m);
76         }
77
78         signal_changed (AudioContentProperty::AUDIO_STREAMS);
79 }
80
81 vector<AudioStreamPtr>
82 SingleStreamAudioContent::audio_streams () const
83 {
84         vector<AudioStreamPtr> s;
85         s.push_back (_audio_stream);
86         return s;
87 }
88
89 void
90 SingleStreamAudioContent::add_properties (list<pair<string, string> >& p) const
91 {
92         /* XXX: this could be better wrt audio streams */
93         p.push_back (make_pair (_("Audio channels"), raw_convert<string> (audio_stream()->channels ())));
94 }