Fix failure on 1-frame-back seek (#604).
[dcpomatic.git] / src / lib / decoder.h
index 0703a542686933e3065f3b3cd5a343498ef0cebd..c5a359e1a86afd52a7750c90d662447d5ce42b7b 100644 (file)
@@ -41,7 +41,8 @@ public:
        virtual ~Decoder () {}
 
 protected:     
-
+       friend class AudioDecoderStream;
+       
        /** Seek so that the next pass() will yield the next thing
         *  (video/sound frame, subtitle etc.) at or after the requested
         *  time.  Pass accurate = true to try harder to ensure that, at worst,
@@ -52,13 +53,7 @@ protected:
         */
        virtual void seek (ContentTime time, bool accurate) = 0;
 
-       enum PassReason {
-               PASS_REASON_VIDEO,
-               PASS_REASON_AUDIO,
-               PASS_REASON_SUBTITLE
-       };
-       
-       virtual bool pass (PassReason reason) = 0;
+       virtual bool pass () = 0;
 };
 
 #endif