Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
[dcpomatic.git] / src / lib / dcp_subtitle_decoder.cc
1 /*
2     Copyright (C) 2014-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 "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::bind;
30
31 DCPSubtitleDecoder::DCPSubtitleDecoder (shared_ptr<const DCPSubtitleContent> content, shared_ptr<Log> log)
32 {
33         subtitle.reset (
34                 new SubtitleDecoder (
35                         this,
36                         content->subtitle,
37                         log,
38                         bind (&DCPSubtitleDecoder::image_subtitles_during, this, _1, _2),
39                         bind (&DCPSubtitleDecoder::text_subtitles_during, this, _1, _2)
40                         )
41                 );
42
43         shared_ptr<dcp::SubtitleAsset> c (load (content->path (0)));
44         _subtitles = c->subtitles ();
45         _next = _subtitles.begin ();
46 }
47
48 void
49 DCPSubtitleDecoder::seek (ContentTime time, bool accurate)
50 {
51         subtitle->seek (time, accurate);
52
53         _next = _subtitles.begin ();
54         list<dcp::SubtitleString>::const_iterator i = _subtitles.begin ();
55         while (i != _subtitles.end() && ContentTime::from_seconds (_next->in().as_seconds()) < time) {
56                 ++i;
57         }
58 }
59
60 bool
61 DCPSubtitleDecoder::pass (PassReason, bool)
62 {
63         if (_next == _subtitles.end ()) {
64                 return true;
65         }
66
67         /* Gather all subtitles with the same time period that are next
68            on the list.  We must emit all subtitles for the same time
69            period with the same text_subtitle() call otherwise the
70            SubtitleDecoder will assume there is nothing else at the
71            time of emit the first.
72         */
73
74         list<dcp::SubtitleString> s;
75         ContentTimePeriod const p = content_time_period (*_next);
76
77         while (_next != _subtitles.end () && content_time_period (*_next) == p) {
78                 s.push_back (*_next);
79                 ++_next;
80         }
81
82         subtitle->give_text (p, s);
83
84         return false;
85 }
86
87 list<ContentTimePeriod>
88 DCPSubtitleDecoder::image_subtitles_during (ContentTimePeriod, bool) const
89 {
90         return list<ContentTimePeriod> ();
91 }
92
93 list<ContentTimePeriod>
94 DCPSubtitleDecoder::text_subtitles_during (ContentTimePeriod p, bool starting) const
95 {
96         /* XXX: inefficient */
97
98         list<ContentTimePeriod> d;
99
100         for (list<dcp::SubtitleString>::const_iterator i = _subtitles.begin(); i != _subtitles.end(); ++i) {
101                 ContentTimePeriod period = content_time_period (*i);
102                 if ((starting && p.contains(period.from)) || (!starting && p.overlap(period))) {
103                         d.push_back (period);
104                 }
105         }
106
107         d.sort ();
108         d.unique ();
109
110         return d;
111 }
112
113 ContentTimePeriod
114 DCPSubtitleDecoder::content_time_period (dcp::SubtitleString s) const
115 {
116         return ContentTimePeriod (
117                 ContentTime::from_seconds (s.in().as_seconds ()),
118                 ContentTime::from_seconds (s.out().as_seconds ())
119                 );
120 }