Untested external audio support; AB transcodes still broken.
[dcpomatic.git] / src / lib / examine_content_job.h
index d149341b4456589e9d1fdda31fc72d978e32d2aa..2004aca8318225e2b2f33da0c6b70f1c959b0c59 100644 (file)
 
 #include "job.h"
 
-class Decoder;
-
 /** @class ExamineContentJob
  *  @brief A class to run through content at high speed to find its length.
  */
 class ExamineContentJob : public Job
 {
 public:
-       ExamineContentJob (boost::shared_ptr<const FilmState>, Log *);
+       ExamineContentJob (boost::shared_ptr<Film>, boost::shared_ptr<Job> req);
        ~ExamineContentJob ();
 
        std::string name () const;
        void run ();
-
-       int last_video_frame () const;
-
-private:
-       boost::shared_ptr<Decoder> _decoder;
 };