Various work on the audio code.
[dcpomatic.git] / src / lib / decoder_part.h
index 36594773a0dfa829d296de282268649ecddf81f6..39f77e6e6cbabedffc1e6bd538135a1db7c73019 100644 (file)
@@ -33,6 +33,8 @@ public:
        DecoderPart (Decoder* parent, boost::shared_ptr<Log> log);
        virtual ~DecoderPart () {}
 
+       virtual boost::optional<ContentTime> position () const = 0;
+
        void set_ignore () {
                _ignore = true;
        }
@@ -41,8 +43,6 @@ public:
                return _ignore;
        }
 
-       virtual boost::optional<ContentTime> position () const = 0;
-
 protected:
        Decoder* _parent;
        boost::shared_ptr<Log> _log;