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