XML metadata and some other bits.
[dcpomatic.git] / src / lib / transcode_job.h
index 8f78e7f6a899b8d3e5dda3f11da4adce2a1fdfcc..def545958f4ff0c52a0626e2ae5b1a2106ccdf6f 100644 (file)
@@ -23,7 +23,6 @@
 
 #include <boost/shared_ptr.hpp>
 #include "job.h"
-#include "options.h"
 
 class Encoder;
 
@@ -33,7 +32,7 @@ class Encoder;
 class TranscodeJob : public Job
 {
 public:
-       TranscodeJob (boost::shared_ptr<Film> f, DecodeOptions od, boost::shared_ptr<Job> req);
+       TranscodeJob (boost::shared_ptr<Film> f);
        
        std::string name () const;
        void run ();
@@ -41,8 +40,4 @@ public:
 
 protected:
        int remaining_time () const;
-
-private:
-       DecodeOptions _decode_opt;
-       boost::shared_ptr<Encoder> _encoder;
 };