Tidy up image/text subtitle distinction with FFmpeg sources.
[dcpomatic.git] / src / lib / ffmpeg_subtitle_stream.cc
1 /*
2     Copyright (C) 2013-2016 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_subtitle_stream.h"
22 #include "raw_convert.h"
23 #include <libxml++/libxml++.h>
24 #include <boost/foreach.hpp>
25 #include <iostream>
26
27 using std::string;
28 using std::map;
29 using std::list;
30 using std::cout;
31 using std::make_pair;
32
33 /** Construct a SubtitleStream from a value returned from to_string().
34  *  @param t String returned from to_string().
35  *  @param v State file version.
36  */
37 FFmpegSubtitleStream::FFmpegSubtitleStream (cxml::ConstNodePtr node, int version)
38         : FFmpegStream (node)
39 {
40         if (version == 32) {
41                 BOOST_FOREACH (cxml::NodePtr i, node->node_children ("Period")) {
42                         /* In version 32 we assumed that from times were unique, so they were
43                            used as identifiers.  All subtitles were image subtitles.
44                         */
45                         add_image_subtitle (
46                                 raw_convert<string> (i->string_child ("From")),
47                                 ContentTimePeriod (
48                                         ContentTime (i->number_child<ContentTime::Type> ("From")),
49                                         ContentTime (i->number_child<ContentTime::Type> ("To"))
50                                         )
51                                 );
52                 }
53         } else {
54                 /* In version 33 we use a hash of various parts of the subtitle as the id.
55                    <Subtitle> was initially used for image subtitles; later we have
56                    <ImageSubtitle> and <TextSubtitle>
57                 */
58                 BOOST_FOREACH (cxml::NodePtr i, node->node_children ("Subtitle")) {
59                         add_image_subtitle (
60                                 raw_convert<string> (i->string_child ("Id")),
61                                 ContentTimePeriod (
62                                         ContentTime (i->number_child<ContentTime::Type> ("From")),
63                                         ContentTime (i->number_child<ContentTime::Type> ("To"))
64                                         )
65                                 );
66                 }
67
68                 BOOST_FOREACH (cxml::NodePtr i, node->node_children ("ImageSubtitle")) {
69                         add_image_subtitle (
70                                 raw_convert<string> (i->string_child ("Id")),
71                                 ContentTimePeriod (
72                                         ContentTime (i->number_child<ContentTime::Type> ("From")),
73                                         ContentTime (i->number_child<ContentTime::Type> ("To"))
74                                         )
75                                 );
76                 }
77
78                 BOOST_FOREACH (cxml::NodePtr i, node->node_children ("TextSubtitle")) {
79                         add_text_subtitle (
80                                 raw_convert<string> (i->string_child ("Id")),
81                                 ContentTimePeriod (
82                                         ContentTime (i->number_child<ContentTime::Type> ("From")),
83                                         ContentTime (i->number_child<ContentTime::Type> ("To"))
84                                         )
85                                 );
86                 }
87
88                 BOOST_FOREACH (cxml::NodePtr i, node->node_children ("Colour")) {
89                         _colours[RGBA(i->node_child("From"))] = RGBA (i->node_child("To"));
90                 }
91         }
92 }
93
94 void
95 FFmpegSubtitleStream::as_xml (xmlpp::Node* root) const
96 {
97         FFmpegStream::as_xml (root);
98
99         as_xml (root, _image_subtitles, "ImageSubtitle");
100         as_xml (root, _text_subtitles, "TextSubtitle");
101
102         for (map<RGBA, RGBA>::const_iterator i = _colours.begin(); i != _colours.end(); ++i) {
103                 xmlpp::Node* node = root->add_child("Colour");
104                 i->first.as_xml (node->add_child("From"));
105                 i->second.as_xml (node->add_child("To"));
106         }
107 }
108
109 void
110 FFmpegSubtitleStream::as_xml (xmlpp::Node* root, PeriodMap const & subs, string node_name) const
111 {
112         for (PeriodMap::const_iterator i = subs.begin(); i != subs.end(); ++i) {
113                 xmlpp::Node* node = root->add_child (node_name);
114                 node->add_child("Id")->add_child_text (i->first);
115                 node->add_child("From")->add_child_text (raw_convert<string> (i->second.from.get ()));
116                 node->add_child("To")->add_child_text (raw_convert<string> (i->second.to.get ()));
117         }
118 }
119
120 void
121 FFmpegSubtitleStream::add_image_subtitle (string id, ContentTimePeriod period)
122 {
123         DCPOMATIC_ASSERT (_image_subtitles.find (id) == _image_subtitles.end ());
124         _image_subtitles[id] = period;
125 }
126
127 void
128 FFmpegSubtitleStream::add_text_subtitle (string id, ContentTimePeriod period)
129 {
130         DCPOMATIC_ASSERT (_text_subtitles.find (id) == _text_subtitles.end ());
131         _text_subtitles[id] = period;
132 }
133
134 list<ContentTimePeriod>
135 FFmpegSubtitleStream::image_subtitles_during (ContentTimePeriod period, bool starting) const
136 {
137         return subtitles_during (period, starting, _image_subtitles);
138 }
139
140 list<ContentTimePeriod>
141 FFmpegSubtitleStream::text_subtitles_during (ContentTimePeriod period, bool starting) const
142 {
143         return subtitles_during (period, starting, _text_subtitles);
144 }
145
146 list<ContentTimePeriod>
147 FFmpegSubtitleStream::subtitles_during (ContentTimePeriod period, bool starting, PeriodMap const & subs) const
148 {
149         list<ContentTimePeriod> d;
150
151         /* XXX: inefficient */
152         for (map<string, ContentTimePeriod>::const_iterator i = subs.begin(); i != subs.end(); ++i) {
153                 if ((starting && period.contains (i->second.from)) || (!starting && period.overlaps (i->second))) {
154                         d.push_back (i->second);
155                 }
156         }
157
158         return d;
159 }
160
161 ContentTime
162 FFmpegSubtitleStream::find_subtitle_to (string id) const
163 {
164         PeriodMap::const_iterator i = _image_subtitles.find (id);
165         if (i != _image_subtitles.end ()) {
166                 return i->second.to;
167         }
168
169         i = _text_subtitles.find (id);
170         DCPOMATIC_ASSERT (i != _text_subtitles.end ());
171         return i->second.to;
172 }
173
174 /** Add some offset to all the times in the stream */
175 void
176 FFmpegSubtitleStream::add_offset (ContentTime offset)
177 {
178         for (PeriodMap::iterator i = _image_subtitles.begin(); i != _image_subtitles.end(); ++i) {
179                 i->second.from += offset;
180                 i->second.to += offset;
181         }
182
183         for (PeriodMap::iterator i = _text_subtitles.begin(); i != _text_subtitles.end(); ++i) {
184                 i->second.from += offset;
185                 i->second.to += offset;
186         }
187 }
188
189 map<RGBA, RGBA>
190 FFmpegSubtitleStream::colours () const
191 {
192         return _colours;
193 }
194
195 void
196 FFmpegSubtitleStream::set_colour (RGBA from, RGBA to)
197 {
198         _colours[from] = to;
199 }
200
201 bool
202 FFmpegSubtitleStream::has_text () const
203 {
204         return !_text_subtitles.empty ();
205 }
206
207 bool
208 FFmpegSubtitleStream::has_image () const
209 {
210         return !_image_subtitles.empty ();
211 }