Make terminate_threads() less likely to leave _threads containing invalid pointers.
[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
30 FFmpegAudioStream::FFmpegAudioStream (cxml::ConstNodePtr node, int version)
31         : FFmpegStream (node)
32         , AudioStream (
33                 node->number_child<int> ("FrameRate"),
34                 node->optional_number_child<Frame>("Length").get_value_or (0),
35                 AudioMapping (node->node_child ("Mapping"), version)
36                 )
37 {
38         optional<ContentTime::Type> const f = node->optional_number_child<ContentTime::Type> ("FirstAudio");
39         if (f) {
40                 first_audio = ContentTime (f.get ());
41         }
42         codec_name = node->optional_string_child("CodecName");
43 }
44
45 void
46 FFmpegAudioStream::as_xml (xmlpp::Node* root) const
47 {
48         FFmpegStream::as_xml (root);
49         root->add_child("FrameRate")->add_child_text (raw_convert<string> (frame_rate ()));
50         root->add_child("Length")->add_child_text (raw_convert<string> (length ()));
51         mapping().as_xml (root->add_child("Mapping"));
52         if (first_audio) {
53                 root->add_child("FirstAudio")->add_child_text (raw_convert<string> (first_audio.get().get ()));
54         }
55         if (codec_name) {
56                 root->add_child("CodecName")->add_child_text (codec_name.get());
57         }
58 }