X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexamine_content_job.h;h=016a56371de1ff8f8641b137484a2712d6d9ad04;hb=59e769023c392c332331567a1aea94660002c463;hp=3bbd673a87e66aab5521b0ddb1666d5404da66ab;hpb=71b7808830e17423453502ed5112b70bf90fff1b;p=dcpomatic.git diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h index 3bbd673a8..016a56371 100644 --- a/src/lib/examine_content_job.h +++ b/src/lib/examine_content_job.h @@ -17,29 +17,22 @@ */ -/** @file src/examine_content_job.h - * @brief A class to run through content at high speed to find its length. - */ - #include "job.h" +#include -class Decoder; +class Content; +class Log; -/** @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, Log *, boost::shared_ptr req); + ExamineContentJob (boost::shared_ptr, boost::shared_ptr); ~ExamineContentJob (); std::string name () const; void run (); - int last_video_frame () const; - private: - boost::shared_ptr _decoder; + boost::shared_ptr _content; };