avfilter_graph_parse frees inputs and outputs passed in, so we should not.
[dcpomatic.git] / src / lib / examine_content_job.h
index dc0d53ffff2e03650c611b067d18d61abe5a18d0..b97e7823d6b99b808e18c0ddd0ab6fbbd4ba5096 100644 (file)
@@ -17,8 +17,8 @@
 
 */
 
-#include <boost/shared_ptr.hpp>
 #include "job.h"
+#include <boost/shared_ptr.hpp>
 
 class Content;
 class Log;
@@ -26,14 +26,14 @@ class Log;
 class ExamineContentJob : public Job
 {
 public:
-       ExamineContentJob (boost::shared_ptr<Film>, boost::shared_ptr<Content>, bool);
+       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;
-       bool _quick;
 };