Add certificate validity period to the screen dialog.
[dcpomatic.git] / src / lib / subtitle_encoder.h
index a88c6c5bfc66f748fb8465b5340448b972e76130..17d658e6203d31dad0d99179d52f40331ee7e9ab 100644 (file)
 */
 
 
-#include "types.h"
-#include "player_text.h"
 #include "dcp_text_track.h"
-#include "encoder.h"
 #include "dcpomatic_time.h"
+#include "encoder.h"
+#include "player_text.h"
 
 
 namespace dcp {
@@ -45,16 +44,16 @@ public:
        void go () override;
 
        /** @return the number of frames that are done */
-       Frame frames_done () const;
+       Frame frames_done () const override;
 
-       bool finishing () const {
+       bool finishing () const override {
                return false;
        }
 
 private:
        void text (PlayerText subs, TextType type, boost::optional<DCPTextTrack> track, dcpomatic::DCPTimePeriod period);
 
-       std::vector<std::pair<std::shared_ptr<dcp::SubtitleAsset>, boost::filesystem::path> > _assets;
+       std::vector<std::pair<std::shared_ptr<dcp::SubtitleAsset>, boost::filesystem::path>> _assets;
        std::vector<dcpomatic::DCPTimePeriod> _reels;
        bool _split_reels;
        bool _include_font;