Basic grunt-work, untested and unfinished, but it compiles.
[dcpomatic.git] / src / lib / decoder_part.h
index 00099fb33379f6f566c36a71254141fa7ecfd211..36594773a0dfa829d296de282268649ecddf81f6 100644 (file)
@@ -31,7 +31,7 @@ class DecoderPart
 {
 public:
        DecoderPart (Decoder* parent, boost::shared_ptr<Log> log);
-       virtual DecoderPart () {}
+       virtual ~DecoderPart () {}
 
        void set_ignore () {
                _ignore = true;
@@ -43,8 +43,6 @@ public:
 
        virtual boost::optional<ContentTime> position () const = 0;
 
-       void maybe_seek (ContentTime time, bool accurate);
-
 protected:
        Decoder* _parent;
        boost::shared_ptr<Log> _log;