diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-09 23:28:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-09 23:28:41 +0100 |
| commit | 31a33018f113cb7b631dd7bb4d0ed2a7de914cd8 (patch) | |
| tree | 902e0305d81301d6f190750decca64f07111891a /src/lib/subtitle_decoder.cc | |
| parent | e8381aef2057a72270da9dc3d40e935ac56024b0 (diff) | |
Fix some code duplication and crashes when decoding FFmpeg-embedded ASS subtitles along the way.
Diffstat (limited to 'src/lib/subtitle_decoder.cc')
| -rw-r--r-- | src/lib/subtitle_decoder.cc | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/src/lib/subtitle_decoder.cc b/src/lib/subtitle_decoder.cc index 766c7ed87..c0f402e20 100644 --- a/src/lib/subtitle_decoder.cc +++ b/src/lib/subtitle_decoder.cc @@ -20,12 +20,15 @@ #include "subtitle_decoder.h" #include "subtitle_content.h" +#include "util.h" +#include <sub/subtitle.h> #include <boost/shared_ptr.hpp> #include <boost/foreach.hpp> #include <iostream> using std::list; using std::cout; +using std::string; using boost::shared_ptr; using boost::optional; using boost::function; @@ -132,3 +135,76 @@ SubtitleDecoder::seek (ContentTime, bool) _decoded_text.clear (); _decoded_image.clear (); } + +void +SubtitleDecoder::give_text (ContentTimePeriod period, sub::Subtitle const & subtitle) +{ + /* See if our next subtitle needs to be placed on screen by us */ + bool needs_placement = false; + BOOST_FOREACH (sub::Line i, subtitle.lines) { + if (!i.vertical_position.reference && i.vertical_position.reference.get() == sub::TOP_OF_SUBTITLE) { + needs_placement = true; + } + } + + list<dcp::SubtitleString> out; + BOOST_FOREACH (sub::Line i, subtitle.lines) { + BOOST_FOREACH (sub::Block j, i.blocks) { + + float v_position; + dcp::VAlign v_align; + if (needs_placement) { + DCPOMATIC_ASSERT (i.vertical_position.line); + /* This 0.878 is an arbitrary value to lift the bottom sub off the bottom + of the screen a bit to a pleasing degree. + */ + v_position = 0.878 + i.vertical_position.line.get() * 1.5 / 22; + v_align = dcp::VALIGN_BOTTOM; + } else { + DCPOMATIC_ASSERT (i.vertical_position.proportional); + DCPOMATIC_ASSERT (i.vertical_position.reference); + v_position = i.vertical_position.proportional.get(); + switch (i.vertical_position.reference.get()) { + case sub::TOP_OF_SCREEN: + v_align = dcp::VALIGN_TOP; + break; + case sub::CENTRE_OF_SCREEN: + v_align = dcp::VALIGN_CENTER; + break; + case sub::BOTTOM_OF_SCREEN: + v_align = dcp::VALIGN_BOTTOM; + break; + default: + v_align = dcp::VALIGN_TOP; + break; + } + } + + out.push_back ( + dcp::SubtitleString ( + string(TEXT_FONT_ID), + j.italic, + j.bold, + /* force the colour to whatever is configured */ + content()->colour(), + j.font_size.points (72 * 11), + 1.0, + dcp::Time (subtitle.from.all_as_seconds(), 1000), + dcp::Time (subtitle.to.all_as_seconds(), 1000), + 0, + dcp::HALIGN_CENTER, + v_position, + v_align, + dcp::DIRECTION_LTR, + j.text, + content()->outline() ? dcp::BORDER : dcp::NONE, + content()->outline_colour(), + dcp::Time (0, 1000), + dcp::Time (0, 1000) + ) + ); + } + } + + give_text (period, out); +} |
