Missing FFmpeg include; fixes #989.
[dcpomatic.git] / src / lib / decoder.h
index 2a3b56c637be9f5135d1aa933369e077f7ea30a6..181fc6c2ab8869dc96f5269600f69017d362d631 100644 (file)
@@ -64,6 +64,11 @@ public:
 
        /** @return true if this decoder has already returned all its data and will give no more */
        virtual bool pass (PassReason, bool accurate) = 0;
+
+       /** Ensure that any future get() calls return data that reflect
+        *  changes in our content's settings.
+        */
+       virtual void reset () {}
 };
 
 #endif