Fix lack of video rotation in some cases (#2971).
[dcpomatic.git] / src / lib / transcode_job.h
index 368a9b685117ff6425e0a43207032a05450e960e..b05b20a1693373b33cc9b6416f37aef53fa1b5ae 100644 (file)
@@ -57,10 +57,16 @@ public:
        std::string json_name () const override;
        void run () override;
        std::string status () const override;
+       bool enable_notify () const override {
+               return true;
+       }
 
        void set_encoder (std::shared_ptr<Encoder> t);
 
 private:
+       virtual void post_transcode () {}
+       float frames_per_second() const;
+
        int remaining_time () const override;
 
        std::shared_ptr<Encoder> _encoder;