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