Try to allow users to specify that the film's header should be trusted wrt length...
[dcpomatic.git] / src / lib / make_dcp_job.h
index fc7da6c8920542fb10cb9d737a7e14c1620ae9c2..442bb55f54b03b982060379f43724346c850177f 100644 (file)
 class MakeDCPJob : public Job
 {
 public:
-       MakeDCPJob (boost::shared_ptr<const FilmState>, boost::shared_ptr<const Options>, Log *);
+       MakeDCPJob (boost::shared_ptr<Film>, boost::shared_ptr<const Options>, boost::shared_ptr<Job> req);
 
        std::string name () const;
        void run ();
 
 private:
        void dcp_progress (float);
+       std::string j2c_path (int) const;
+       std::string wav_path (libdcp::Channel) const;
+
+       boost::shared_ptr<const Options> _opt;
 };