avfilter_graph_parse frees inputs and outputs passed in, so we should not.
[dcpomatic.git] / src / lib / examine_content_job.h
index 8ee4f0d608de5e8b591e68f23dd2634929065dbe..b97e7823d6b99b808e18c0ddd0ab6fbbd4ba5096 100644 (file)
 
 */
 
-/** @file  src/examine_content_job.h
- *  @brief A class to obtain the length and MD5 digest of a content file.
- */
-
 #include "job.h"
+#include <boost/shared_ptr.hpp>
+
+class Content;
+class Log;
 
-/** @class ExamineContentJob
- *  @brief A class to obtain the length and MD5 digest of a content file.
- */
 class ExamineContentJob : public Job
 {
 public:
-       ExamineContentJob (boost::shared_ptr<Film>);
+       ExamineContentJob (boost::shared_ptr<const Film>, boost::shared_ptr<Content>);
        ~ExamineContentJob ();
 
        std::string name () const;
+       std::string json_name () const;
        void run ();
+
+private:
+       boost::shared_ptr<Content> _content;
 };