Fix incorrect conversion of audio from DCP sources (#642).
[dcpomatic.git] / src / lib / subtitle_decoder.cc
1 /*
2     Copyright (C) 2013-2015 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 "subtitle_decoder.h"
21 #include "subtitle_content.h"
22 #include <boost/shared_ptr.hpp>
23 #include <boost/foreach.hpp>
24
25 using std::list;
26 using std::cout;
27 using boost::shared_ptr;
28 using boost::optional;
29
30 SubtitleDecoder::SubtitleDecoder (shared_ptr<const SubtitleContent> c)
31         : _subtitle_content (c)
32 {
33
34 }
35
36 /** Called by subclasses when an image subtitle is ready.
37  *  @param period Period of the subtitle.
38  *  @param image Subtitle image.
39  *  @param rect Area expressed as a fraction of the video frame that this subtitle
40  *  is for (e.g. a width of 0.5 means the width of the subtitle is half the width
41  *  of the video frame)
42  */
43 void
44 SubtitleDecoder::image_subtitle (ContentTimePeriod period, shared_ptr<Image> image, dcpomatic::Rect<double> rect)
45 {
46         _decoded_image_subtitles.push_back (ContentImageSubtitle (period, image, rect));
47 }
48
49 void
50 SubtitleDecoder::text_subtitle (ContentTimePeriod period, list<dcp::SubtitleString> s)
51 {
52         _decoded_text_subtitles.push_back (ContentTextSubtitle (period, s));
53 }
54
55 /** @param sp Full periods of subtitles that are showing or starting during the specified period */
56 template <class T>
57 list<T>
58 SubtitleDecoder::get (list<T> const & subs, list<ContentTimePeriod> const & sp, ContentTimePeriod period, bool starting)
59 {
60         if (sp.empty ()) {
61                 /* Nothing in this period */
62                 return list<T> ();
63         }
64
65         /* Seek if what we want is before what we have, or more than a reasonable amount after */
66         if (subs.empty() || sp.back().to < subs.front().period().from || sp.front().from > (subs.back().period().to + ContentTime::from_seconds (5))) {
67                 seek (sp.front().from, true);
68         }
69
70         /* Now enough pass() calls will either:
71          *  (a) give us what we want, or
72          *  (b) hit the end of the decoder.
73          */
74         while (!pass () && (subs.empty() || (subs.back().period().to < sp.back().to))) {}
75
76         /* Now look for what we wanted in the data we have collected */
77         /* XXX: inefficient */
78
79         list<T> out;
80         for (typename list<T>::const_iterator i = subs.begin(); i != subs.end(); ++i) {
81                 if ((starting && period.contains (i->period().from)) || (!starting && period.overlaps (i->period ()))) {
82                         out.push_back (*i);
83                 }
84         }
85
86         /* Discard anything in _decoded_image_subtitles that is outside 5 seconds either side of period */
87
88         list<ContentImageSubtitle>::iterator i = _decoded_image_subtitles.begin();
89         while (i != _decoded_image_subtitles.end()) {
90                 list<ContentImageSubtitle>::iterator tmp = i;
91                 ++tmp;
92
93                 if (
94                         i->period().to < (period.from - ContentTime::from_seconds (5)) ||
95                         i->period().from > (period.to + ContentTime::from_seconds (5))
96                         ) {
97                         _decoded_image_subtitles.erase (i);
98                 }
99
100                 i = tmp;
101         }
102
103         return out;
104 }
105
106 list<ContentTextSubtitle>
107 SubtitleDecoder::get_text_subtitles (ContentTimePeriod period, bool starting)
108 {
109         return get<ContentTextSubtitle> (_decoded_text_subtitles, text_subtitles_during (period, starting), period, starting);
110 }
111
112 list<ContentImageSubtitle>
113 SubtitleDecoder::get_image_subtitles (ContentTimePeriod period, bool starting)
114 {
115         return get<ContentImageSubtitle> (_decoded_image_subtitles, image_subtitles_during (period, starting), period, starting);
116 }
117
118 void
119 SubtitleDecoder::seek (ContentTime, bool)
120 {
121         _decoded_text_subtitles.clear ();
122         _decoded_image_subtitles.clear ();
123 }