Merge branch '1.0' of ssh://git.carlh.net/home/carl/git/dcpomatic2 into 2.0
[dcpomatic.git] / src / lib / ffmpeg_subtitle_stream.cc
1 /*
2     Copyright (C) 2013-2014 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 "ffmpeg_subtitle_stream.h"
21 #include "raw_convert.h"
22 #include <libxml++/libxml++.h>
23 #include <boost/foreach.hpp>
24
25 using std::string;
26 using std::map;
27 using std::list;
28 using std::cout;
29
30 /** Construct a SubtitleStream from a value returned from to_string().
31  *  @param t String returned from to_string().
32  *  @param v State file version.
33  */
34 FFmpegSubtitleStream::FFmpegSubtitleStream (cxml::ConstNodePtr node)
35         : FFmpegStream (node)
36 {
37         BOOST_FOREACH (cxml::NodePtr i, node->node_children ("Period")) {
38                 add_subtitle (
39                         ContentTimePeriod (
40                                 ContentTime (i->number_child<ContentTime::Type> ("From")),
41                                 ContentTime (i->number_child<ContentTime::Type> ("To"))
42                                 )
43                         );
44         }
45 }
46
47 void
48 FFmpegSubtitleStream::as_xml (xmlpp::Node* root) const
49 {
50         FFmpegStream::as_xml (root);
51
52         for (map<ContentTime, ContentTime>::const_iterator i = _subtitles.begin(); i != _subtitles.end(); ++i) {
53                 xmlpp::Node* node = root->add_child ("Period");
54                 node->add_child("From")->add_child_text (raw_convert<string> (i->first.get ()));
55                 node->add_child("To")->add_child_text (raw_convert<string> (i->second.get ()));
56         }
57 }
58
59 void
60 FFmpegSubtitleStream::add_subtitle (ContentTimePeriod period)
61 {
62         DCPOMATIC_ASSERT (_subtitles.find (period.from) == _subtitles.end ());
63         _subtitles[period.from] = period.to;
64 }
65
66 list<ContentTimePeriod>
67 FFmpegSubtitleStream::subtitles_during (ContentTimePeriod period, bool starting) const
68 {
69         list<ContentTimePeriod> d;
70
71         /* XXX: inefficient */
72         for (map<ContentTime, ContentTime>::const_iterator i = _subtitles.begin(); i != _subtitles.end(); ++i) {
73                 if ((starting && period.contains (i->first)) || (!starting && period.overlaps (ContentTimePeriod (i->first, i->second)))) {
74                         d.push_back (ContentTimePeriod (i->first, i->second));
75                 }
76         }
77
78         return d;
79 }
80
81 ContentTime
82 FFmpegSubtitleStream::find_subtitle_to (ContentTime from) const
83 {
84         map<ContentTime, ContentTime>::const_iterator i = _subtitles.find (from);
85         DCPOMATIC_ASSERT (i != _subtitles.end ());
86         return i->second;
87 }