diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-20 23:58:51 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-11-20 23:58:51 +0000 |
| commit | 878e19aabf2278828a3c9b518e0804b2cef0c01e (patch) | |
| tree | 1929355377edc46d25e6f9635d259ae7092ac3ef /src/lib/dcp_subtitle_decoder.cc | |
| parent | 4337694dfd488e88f56b63898ad35ce8ce9bb3c3 (diff) | |
Some more decode logging.
Diffstat (limited to 'src/lib/dcp_subtitle_decoder.cc')
| -rw-r--r-- | src/lib/dcp_subtitle_decoder.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/dcp_subtitle_decoder.cc b/src/lib/dcp_subtitle_decoder.cc index fe383226e..daafee3e5 100644 --- a/src/lib/dcp_subtitle_decoder.cc +++ b/src/lib/dcp_subtitle_decoder.cc @@ -28,12 +28,13 @@ using std::cout; using boost::shared_ptr; using boost::bind; -DCPSubtitleDecoder::DCPSubtitleDecoder (shared_ptr<const DCPSubtitleContent> content) +DCPSubtitleDecoder::DCPSubtitleDecoder (shared_ptr<const DCPSubtitleContent> content, shared_ptr<Log> log) { subtitle.reset ( new SubtitleDecoder ( this, content->subtitle, + log, bind (&DCPSubtitleDecoder::image_subtitles_during, this, _1, _2), bind (&DCPSubtitleDecoder::text_subtitles_during, this, _1, _2) ) |
