Add workaround for 3D DCPs whose picture MXFs are labelled (within the MXF) as mono.
[dcpomatic.git] / src / lib / decoder.h
index 9e5573662e8acb82f4d71f9c26f22cd99d124044..10bb4531032e4d0068340b14c985d9b401ac2fb5 100644 (file)
@@ -57,7 +57,8 @@ protected:
                PASS_REASON_SUBTITLE
        };
 
-       virtual bool pass (PassReason) = 0;
+       /** @return true if this decoder has already returned all its data and will give no more */
+       virtual bool pass (PassReason, bool accurate) = 0;
 };
 
 #endif