diff options
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) ) |
