Fix typo in variable name.
[dcpomatic.git] / src / lib / piece.h
index c617de544cd5214e5f7c40d1e2165a12240a1cf9..9fd53748d42f4a83c3b40365623fe5fc5fe2d935 100644 (file)
@@ -25,6 +25,7 @@
 
 #include "dcpomatic_time.h"
 #include "frame_rate_change.h"
+#include <vector>
 
 
 class Content;
@@ -43,7 +44,8 @@ public:
 
        std::shared_ptr<Content> content;
        std::shared_ptr<Decoder> decoder;
-       boost::optional<dcpomatic::DCPTimePeriod> ignore_video;
+       std::vector<dcpomatic::DCPTimePeriod> ignore_video;
+       std::vector<dcpomatic::DCPTimePeriod> ignore_atmos;
        FrameRateChange frc;
        bool done;
 };