Merge branch 'warnings' into v2.15.x.
[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 <dcp/raw_convert.h>
23 #include "warnings.h"
24 DCPOMATIC_DISABLE_WARNINGS
25 #include <libxml++/libxml++.h>
26 DCPOMATIC_ENABLE_WARNINGS
27 #include <libcxml/cxml.h>
28
29 using std::string;
30 using boost::optional;
31 using dcp::raw_convert;
32 using namespace dcpomatic;
33
34 FFmpegAudioStream::FFmpegAudioStream (cxml::ConstNodePtr node, int version)
35         : FFmpegStream (node)
36         , AudioStream (
37                 node->number_child<int> ("FrameRate"),
38                 node->optional_number_child<Frame>("Length").get_value_or (0),
39                 AudioMapping (node->node_child ("Mapping"), version)
40                 )
41 {
42         optional<ContentTime::Type> const f = node->optional_number_child<ContentTime::Type> ("FirstAudio");
43         if (f) {
44                 first_audio = ContentTime (f.get ());
45         }
46         codec_name = node->optional_string_child("CodecName");
47 }
48
49 void
50 FFmpegAudioStream::as_xml (xmlpp::Node* root) const
51 {
52         FFmpegStream::as_xml (root);
53         root->add_child("FrameRate")->add_child_text (raw_convert<string> (frame_rate ()));
54         root->add_child("Length")->add_child_text (raw_convert<string> (length ()));
55         mapping().as_xml (root->add_child("Mapping"));
56         if (first_audio) {
57                 root->add_child("FirstAudio")->add_child_text (raw_convert<string> (first_audio.get().get ()));
58         }
59         if (codec_name) {
60                 root->add_child("CodecName")->add_child_text (codec_name.get());
61         }
62 }