Reinstate subtitle list view.
[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 (new SubtitleDecoder (this, content->subtitle, log));
34
35         shared_ptr<dcp::SubtitleAsset> c (load (content->path (0)));
36         _subtitles = c->subtitles ();
37         _next = _subtitles.begin ();
38 }
39
40 void
41 DCPSubtitleDecoder::seek (ContentTime time, bool)
42 {
43         _next = _subtitles.begin ();
44         list<dcp::SubtitleString>::const_iterator i = _subtitles.begin ();
45         while (i != _subtitles.end() && ContentTime::from_seconds (_next->in().as_seconds()) < time) {
46                 ++i;
47         }
48 }
49
50 bool
51 DCPSubtitleDecoder::pass ()
52 {
53         if (_next == _subtitles.end ()) {
54                 return true;
55         }
56
57         /* Gather all subtitles with the same time period that are next
58            on the list.  We must emit all subtitles for the same time
59            period with the same text_subtitle() call otherwise the
60            SubtitleDecoder will assume there is nothing else at the
61            time of emit the first.
62         */
63
64         list<dcp::SubtitleString> s;
65         ContentTimePeriod const p = content_time_period (*_next);
66
67         while (_next != _subtitles.end () && content_time_period (*_next) == p) {
68                 s.push_back (*_next);
69                 ++_next;
70         }
71
72         subtitle->emit_text (p, s);
73         return false;
74 }
75
76 ContentTimePeriod
77 DCPSubtitleDecoder::content_time_period (dcp::SubtitleString s) const
78 {
79         return ContentTimePeriod (
80                 ContentTime::from_seconds (s.in().as_seconds ()),
81                 ContentTime::from_seconds (s.out().as_seconds ())
82                 );
83 }