Supporters update.
[dcpomatic.git] / src / lib / decoder_part.cc
index 6d53e4a77c78030ba7d985fadfd192da4c16fade..bcddcb785dde11b1c81e1cb5bc2d67b251b82520 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "decoder_part.h"
 #include "decoder.h"
 
-using boost::shared_ptr;
 
-DecoderPart::DecoderPart (Decoder* parent, shared_ptr<Log> log)
+DecoderPart::DecoderPart (Decoder* parent)
        : _parent (parent)
-       , _log (log)
        , _ignore (false)
 {
 
 }
-
-void
-DecoderPart::maybe_seek (ContentTime time, bool accurate)
-{
-       _parent->maybe_seek (position(), time, accurate);
-}