Fix font_id_map errors when importing DCP subtitles that have no
[dcpomatic.git] / src / lib / ffmpeg_encoder.h
index 710364b013840779d0fb80fdd204ca7d57960e75..393a6d72eaa58bd1d09670015315a43a18097824 100644 (file)
@@ -42,11 +42,11 @@ public:
                int x264_crf
                );
 
-       void go ();
+       void go () override;
 
-       boost::optional<float> current_rate () const;
-       Frame frames_done () const;
-       bool finishing () const {
+       boost::optional<float> current_rate () const override;
+       Frame frames_done () const override;
+       bool finishing () const override {
                return false;
        }
 
@@ -73,7 +73,7 @@ private:
                void audio (std::shared_ptr<AudioBuffers>);
 
        private:
-               std::map<Eyes, std::shared_ptr<FFmpegFileEncoder> > _encoders;
+               std::map<Eyes, std::shared_ptr<FFmpegFileEncoder>> _encoders;
        };
 
        int _output_audio_channels;