Stop empty Font IDs in imported DCP subtitles making it into the
[dcpomatic.git] / src / lib / dcp_subtitle_decoder.cc
1 /*
2     Copyright (C) 2014-2018 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 "dcp_subtitle_decoder.h"
22 #include "dcp_subtitle_content.h"
23 #include <dcp/interop_subtitle_asset.h>
24 #include <iostream>
25
26 using std::list;
27 using std::cout;
28 using boost::shared_ptr;
29 using boost::dynamic_pointer_cast;
30 using boost::bind;
31
32 DCPSubtitleDecoder::DCPSubtitleDecoder (shared_ptr<const Film> film, shared_ptr<const DCPSubtitleContent> content)
33         : Decoder (film)
34 {
35         shared_ptr<dcp::SubtitleAsset> c (load (content->path (0)));
36         c->fix_empty_font_ids ();
37         _subtitles = c->subtitles ();
38         _next = _subtitles.begin ();
39
40         ContentTime first;
41         if (_next != _subtitles.end()) {
42                 first = content_time_period(*_next).from;
43         }
44         text.push_back (shared_ptr<TextDecoder> (new TextDecoder (this, content->only_text(), first)));
45 }
46
47 void
48 DCPSubtitleDecoder::seek (ContentTime time, bool accurate)
49 {
50         Decoder::seek (time, accurate);
51
52         _next = _subtitles.begin ();
53         list<shared_ptr<dcp::Subtitle> >::const_iterator i = _subtitles.begin ();
54         while (i != _subtitles.end() && ContentTime::from_seconds ((*_next)->in().as_seconds()) < time) {
55                 ++i;
56         }
57 }
58
59 bool
60 DCPSubtitleDecoder::pass ()
61 {
62         if (_next == _subtitles.end ()) {
63                 return true;
64         }
65
66         /* Gather all subtitles with the same time period that are next
67            on the list.  We must emit all subtitles for the same time
68            period with the same emit*() call otherwise the
69            TextDecoder will assume there is nothing else at the
70            time of emitting the first.
71         */
72
73         list<dcp::SubtitleString> s;
74         list<dcp::SubtitleImage> i;
75         ContentTimePeriod const p = content_time_period (*_next);
76
77         while (_next != _subtitles.end () && content_time_period (*_next) == p) {
78                 shared_ptr<dcp::SubtitleString> ns = dynamic_pointer_cast<dcp::SubtitleString>(*_next);
79                 if (ns) {
80                         s.push_back (*ns);
81                         ++_next;
82                 } else {
83                         /* XXX: perhaps these image subs should also be collected together like the string ones are;
84                            this would need to be done both here and in DCPDecoder.
85                         */
86
87                         shared_ptr<dcp::SubtitleImage> ni = dynamic_pointer_cast<dcp::SubtitleImage>(*_next);
88                         if (ni) {
89                                 emit_subtitle_image (p, *ni, film()->frame_size(), only_text());
90                                 ++_next;
91                         }
92                 }
93         }
94
95         only_text()->emit_plain (p, s);
96         return false;
97 }
98
99 ContentTimePeriod
100 DCPSubtitleDecoder::content_time_period (shared_ptr<dcp::Subtitle> s) const
101 {
102         return ContentTimePeriod (
103                 ContentTime::from_seconds (s->in().as_seconds ()),
104                 ContentTime::from_seconds (s->out().as_seconds ())
105                 );
106 }