Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / ffmpeg_audio_stream.cc
1 /*
2     Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "ffmpeg_audio_stream.h"
22 #include "raw_convert.h"
23 #include <libxml++/libxml++.h>
24 #include <libcxml/cxml.h>
25
26 using std::string;
27 using boost::optional;
28
29 FFmpegAudioStream::FFmpegAudioStream (cxml::ConstNodePtr node, int version)
30         : FFmpegStream (node)
31         , AudioStream (
32                 node->number_child<int> ("FrameRate"),
33                 node->optional_number_child<Frame>("Length").get_value_or (0),
34                 AudioMapping (node->node_child ("Mapping"), version)
35                 )
36 {
37         optional<ContentTime::Type> const f = node->optional_number_child<ContentTime::Type> ("FirstAudio");
38         if (f) {
39                 first_audio = ContentTime (f.get ());
40         }
41         codec_name = node->optional_string_child("CodecName");
42 }
43
44 void
45 FFmpegAudioStream::as_xml (xmlpp::Node* root) const
46 {
47         FFmpegStream::as_xml (root);
48         root->add_child("FrameRate")->add_child_text (raw_convert<string> (frame_rate ()));
49         root->add_child("Length")->add_child_text (raw_convert<string> (length ()));
50         mapping().as_xml (root->add_child("Mapping"));
51         if (first_audio) {
52                 root->add_child("FirstAudio")->add_child_text (raw_convert<string> (first_audio.get().get ()));
53         }
54         if (codec_name) {
55                 root->add_child("CodecName")->add_child_text (codec_name.get());
56         }
57 }