Accessor for ClosedCaptionsDialog.
[dcpomatic.git] / src / lib / piece.h
index b5ab2d233918ecbe542c83564bfc747d3cd7c963..440beecf4bd6af079bd5b552fae0fddd3ead7a44 100644 (file)
@@ -22,6 +22,7 @@
 #define DCPOMATIC_PIECE_H
 
 #include "types.h"
+#include "frame_rate_change.h"
 
 class Content;
 class Decoder;
@@ -33,11 +34,13 @@ public:
                : content (c)
                , decoder (d)
                , frc (f)
+               , done (false)
        {}
 
        boost::shared_ptr<Content> content;
        boost::shared_ptr<Decoder> decoder;
        FrameRateChange frc;
+       bool done;
 };
 
 #endif