summaryrefslogtreecommitdiff
path: root/src/lib/subtitle_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-10-08 00:45:22 +0100
committerCarl Hetherington <cth@carlh.net>2016-10-08 00:45:22 +0100
commit37494990bbe81f41f581de8258dc7353b82d662d (patch)
tree01fd28caeff323c9ffed0bf9b04ecee358b316d0 /src/lib/subtitle_decoder.cc
parentb0463c6c22d51f6297eea313b429348c3bec3971 (diff)
Fix overlapping burnt-in subtitles in some cases (#959).
Firstly, when finding subtitles that exist during a period, only return those which overlap more than half the period. This means that, in a fight over a frame, the longest-running subtitle in that frame will win. Secondly, make SubtitleDecoder::get pick the wanted subtitles from the cache simply by comparing their periods to those that were requested. I think this is nicer than what was there before (basically reevaulating 'what subtitle(s) for this period') and also makes the first part of this commit effective.
Diffstat (limited to 'src/lib/subtitle_decoder.cc')
-rw-r--r--src/lib/subtitle_decoder.cc26
1 files changed, 16 insertions, 10 deletions
diff --git a/src/lib/subtitle_decoder.cc b/src/lib/subtitle_decoder.cc
index bc4a75ca8..307226da6 100644
--- a/src/lib/subtitle_decoder.cc
+++ b/src/lib/subtitle_decoder.cc
@@ -78,13 +78,15 @@ SubtitleDecoder::give_text (ContentTimePeriod period, list<dcp::SubtitleString>
_decoded_text.push_back (ContentTextSubtitle (period, s));
}
-/** @param sp Full periods of subtitles that are showing or starting during the specified period */
+/** Get the subtitles that correspond to a given list of periods.
+ * @param subs Subtitles.
+ * @param sp Periods for which to extract subtitles from subs.
+ */
template <class T>
list<T>
-SubtitleDecoder::get (list<T> const & subs, list<ContentTimePeriod> const & sp, ContentTimePeriod period, bool starting, bool accurate)
+SubtitleDecoder::get (list<T> const & subs, list<ContentTimePeriod> const & sp, ContentTimePeriod period, bool accurate)
{
if (sp.empty ()) {
- /* Nothing in this period */
return list<T> ();
}
@@ -103,9 +105,13 @@ SubtitleDecoder::get (list<T> const & subs, list<ContentTimePeriod> const & sp,
/* XXX: inefficient */
list<T> out;
- for (typename list<T>::const_iterator i = subs.begin(); i != subs.end(); ++i) {
- if ((starting && period.contains(i->period().from)) || (!starting && period.overlap(i->period()))) {
- out.push_back (*i);
+ BOOST_FOREACH (ContentTimePeriod i, sp) {
+ typename list<T>::const_iterator j = subs.begin();
+ while (j != subs.end() && j->period() != i) {
+ ++j;
+ }
+ if (j != subs.end()) {
+ out.push_back (*j);
}
}
@@ -132,13 +138,13 @@ SubtitleDecoder::get (list<T> const & subs, list<ContentTimePeriod> const & sp,
list<ContentTextSubtitle>
SubtitleDecoder::get_text (ContentTimePeriod period, bool starting, bool accurate)
{
- return get<ContentTextSubtitle> (_decoded_text, _text_during (period, starting), period, starting, accurate);
+ return get<ContentTextSubtitle> (_decoded_text, _text_during (period, starting), period, accurate);
}
list<ContentImageSubtitle>
SubtitleDecoder::get_image (ContentTimePeriod period, bool starting, bool accurate)
{
- return get<ContentImageSubtitle> (_decoded_image, _image_during (period, starting), period, starting, accurate);
+ return get<ContentImageSubtitle> (_decoded_image, _image_during (period, starting), period, accurate);
}
void
@@ -170,7 +176,7 @@ SubtitleDecoder::give_text (ContentTimePeriod period, sub::Subtitle const & subt
}
}
- /* Find the lowest proportional postion */
+ /* Find the lowest proportional position */
optional<float> lowest_proportional;
BOOST_FOREACH (sub::Line i, subtitle.lines) {
if (i.vertical_position.proportional) {
@@ -187,7 +193,7 @@ SubtitleDecoder::give_text (ContentTimePeriod period, sub::Subtitle const & subt
BOOST_FOREACH (sub::Block j, i.blocks) {
if (!j.font_size.specified()) {
- /* Fallback default font size if none other has been specified */
+ /* Fallback default font size if no other has been specified */
j.font_size.set_points (48);
}