Put Film pointer into Decoder.
[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         _subtitles = c->subtitles ();
37         _next = _subtitles.begin ();
38
39         ContentTime first;
40         if (_next != _subtitles.end()) {
41                 first = content_time_period(*_next).from;
42         }
43         text.push_back (shared_ptr<TextDecoder> (new TextDecoder (this, content->only_text(), first)));
44 }
45
46 void
47 DCPSubtitleDecoder::seek (ContentTime time, bool accurate)
48 {
49         Decoder::seek (time, accurate);
50
51         _next = _subtitles.begin ();
52         list<shared_ptr<dcp::Subtitle> >::const_iterator i = _subtitles.begin ();
53         while (i != _subtitles.end() && ContentTime::from_seconds ((*_next)->in().as_seconds()) < time) {
54                 ++i;
55         }
56 }
57
58 bool
59 DCPSubtitleDecoder::pass ()
60 {
61         if (_next == _subtitles.end ()) {
62                 return true;
63         }
64
65         /* Gather all subtitles with the same time period that are next
66            on the list.  We must emit all subtitles for the same time
67            period with the same plain_text() call otherwise the
68            TextDecoder will assume there is nothing else at the
69            time of emit the first.
70         */
71
72         list<dcp::SubtitleString> s;
73         ContentTimePeriod const p = content_time_period (*_next);
74
75         while (_next != _subtitles.end () && content_time_period (*_next) == p) {
76                 shared_ptr<dcp::SubtitleString> ns = dynamic_pointer_cast<dcp::SubtitleString>(*_next);
77                 if (ns) {
78                         s.push_back (*ns);
79                         ++_next;
80                 }
81
82                 /* XXX: image subtitles */
83         }
84
85         only_text()->emit_plain (p, s);
86         return false;
87 }
88
89 ContentTimePeriod
90 DCPSubtitleDecoder::content_time_period (shared_ptr<dcp::Subtitle> s) const
91 {
92         return ContentTimePeriod (
93                 ContentTime::from_seconds (s->in().as_seconds ()),
94                 ContentTime::from_seconds (s->out().as_seconds ())
95                 );
96 }