fc03442d539637b15f01d1f7debeabe465f11b57
[dcpomatic.git] / src / lib / subtitle_decoder.cc
1 /*
2     Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/shared_ptr.hpp>
21 #include "subtitle_decoder.h"
22 #include "subtitle_content.h"
23
24 using std::list;
25 using std::cout;
26 using boost::shared_ptr;
27 using boost::optional;
28
29 SubtitleDecoder::SubtitleDecoder (shared_ptr<const SubtitleContent> c)
30         : _subtitle_content (c)
31 {
32
33 }
34
35 /** Called by subclasses when an image subtitle is ready.
36  *  Image may be 0 to say that there is no current subtitle.
37  */
38 void
39 SubtitleDecoder::image_subtitle (ContentTimePeriod period, shared_ptr<Image> image, dcpomatic::Rect<double> rect)
40 {
41         _decoded_image_subtitles.push_back (shared_ptr<ContentImageSubtitle> (new ContentImageSubtitle (period, image, rect)));
42 }
43
44 void
45 SubtitleDecoder::text_subtitle (list<dcp::SubtitleString> s)
46 {
47         _decoded_text_subtitles.push_back (shared_ptr<ContentTextSubtitle> (new ContentTextSubtitle (s)));
48 }
49
50 template <class T>
51 list<shared_ptr<T> >
52 SubtitleDecoder::get (list<shared_ptr<T> > const & subs, ContentTimePeriod period)
53 {
54         if (!has_subtitle_during (period)) {
55                 cout << "no subtitle during this period.\n";
56                 return list<shared_ptr<T> > ();
57         }
58
59         if (subs.empty() || period.from < subs.front()->period().from || period.to > (subs.back()->period().to + ContentTime::from_seconds (10))) {
60                 /* Either we have no decoded data, or what we do have is a long way from what we want: seek */
61                 seek (period.from, true);
62         }
63
64         /* Now enough pass() calls will either:
65          *  (a) give us what we want, or
66          *  (b) hit the end of the decoder.
67          */
68         while (!pass() && (subs.empty() || (subs.front()->period().from > period.from || period.to < subs.back()->period().to))) {}
69
70         /* Now look for what we wanted in the data we have collected */
71         /* XXX: inefficient */
72         
73         list<shared_ptr<T> > out;
74         for (typename list<shared_ptr<T> >::const_iterator i = subs.begin(); i != subs.end(); ++i) {
75                 if ((*i)->period().overlaps (period)) {
76                         out.push_back (*i);
77                 }
78         }
79
80         return out;
81 }
82
83 list<shared_ptr<ContentTextSubtitle> >
84 SubtitleDecoder::get_text_subtitles (ContentTimePeriod period)
85 {
86         return get<ContentTextSubtitle> (_decoded_text_subtitles, period);
87 }
88
89 list<shared_ptr<ContentImageSubtitle> >
90 SubtitleDecoder::get_image_subtitles (ContentTimePeriod period)
91 {
92         return get<ContentImageSubtitle> (_decoded_image_subtitles, period);
93 }
94
95 void
96 SubtitleDecoder::seek (ContentTime, bool)
97 {
98         _decoded_text_subtitles.clear ();
99         _decoded_image_subtitles.clear ();
100 }