X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=inline;f=src%2Flib%2Fexamine_content_job.h;h=8ee4f0d608de5e8b591e68f23dd2634929065dbe;hb=af671aa256ae0d2fa38a6740cea7fc0f6b45b5b8;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..8ee4f0d60 100644 --- a/src/lib/examine_content_job.h +++ b/src/lib/examine_content_job.h @@ -18,28 +18,21 @@ */ /** @file src/examine_content_job.h - * @brief A class to run through content at high speed to find its length. + * @brief A class to obtain the length and MD5 digest of a content file. */ #include "job.h" -class Decoder; - /** @class ExamineContentJob - * @brief A class to run through content at high speed to find its length. + * @brief A class to obtain the length and MD5 digest of a content file. */ class ExamineContentJob : public Job { public: - ExamineContentJob (boost::shared_ptr, Log *, boost::shared_ptr req); + ExamineContentJob (boost::shared_ptr); ~ExamineContentJob (); std::string name () const; void run (); - - int last_video_frame () const; - -private: - boost::shared_ptr _decoder; };