Reasonably straightforward stuff; main things are adding
[dcpomatic.git] / src / lib / dcp_decoder.cc
index 873b3634fb18be9a2803d7b70d16c620c9b6605c..e8c64a086012742e1fe3c4fe3c8bfe3320ece87c 100644 (file)
@@ -42,8 +42,8 @@ using std::cout;
 using boost::shared_ptr;
 using boost::dynamic_pointer_cast;
 
-DCPDecoder::DCPDecoder (shared_ptr<const DCPContent> c, bool fast)
-       : VideoDecoder (c->video)
+DCPDecoder::DCPDecoder (shared_ptr<const DCPContent> c, shared_ptr<Log> log, bool fast)
+       : VideoDecoder (c->video, log)
        , AudioDecoder (c, fast)
        , SubtitleDecoder (c)
        , _dcp_content (c)