No-op: remove all trailing whitespace.
[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 using std::string;
26 using std::cout;
27 using std::vector;
28 using boost::shared_ptr;
29
30 SingleStreamAudioContent::SingleStreamAudioContent (shared_ptr<const Film> film)
31         : Content (film)
32         , AudioContent (film)
33 {
34
35 }
36
37 SingleStreamAudioContent::SingleStreamAudioContent (shared_ptr<const Film> film, boost::filesystem::path p)
38         : Content (film, p)
39         , AudioContent (film, p)
40 {
41
42 }
43
44 SingleStreamAudioContent::SingleStreamAudioContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
45         : Content (film, node)
46         , AudioContent (film, node)
47         , _audio_stream (new AudioStream (node->number_child<int> ("AudioFrameRate"), AudioMapping (node->node_child ("AudioMapping"), version)))
48 {
49
50 }
51
52 void
53 SingleStreamAudioContent::as_xml (xmlpp::Node* node) const
54 {
55         AudioContent::as_xml (node);
56         node->add_child("AudioFrameRate")->add_child_text (raw_convert<string> (audio_stream()->frame_rate ()));
57         audio_stream()->mapping().as_xml (node->add_child("AudioMapping"));
58 }
59
60 void
61 SingleStreamAudioContent::take_from_audio_examiner (shared_ptr<AudioExaminer> examiner)
62 {
63         shared_ptr<const Film> film = _film.lock ();
64         DCPOMATIC_ASSERT (film);
65
66         {
67                 boost::mutex::scoped_lock lm (_mutex);
68                 _audio_stream.reset (new AudioStream (examiner->audio_frame_rate(), examiner->audio_channels ()));
69                 AudioMapping m = _audio_stream->mapping ();
70                 film->make_audio_mapping_default (m);
71                 _audio_stream->set_mapping (m);
72         }
73
74         signal_changed (AudioContentProperty::AUDIO_STREAMS);
75 }
76
77 vector<AudioStreamPtr>
78 SingleStreamAudioContent::audio_streams () const
79 {
80         vector<AudioStreamPtr> s;
81         s.push_back (_audio_stream);
82         return s;
83 }