Remove old DCP before creating new one (#47).
[dcpomatic.git] / src / lib / examine_content_job.h
index 098b9d13262e61bd4566d1a430ed119b19a84cbb..729c287b58fe66488526f02eeff31708d2f7d307 100644 (file)
 */
 
 /** @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
 {
@@ -36,10 +34,5 @@ public:
 
        std::string name () const;
        void run ();
-
-       int last_video_frame () const;
-
-private:
-       boost::shared_ptr<Decoder> _decoder;
 };