X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftranscode_job.h;h=8f78e7f6a899b8d3e5dda3f11da4adce2a1fdfcc;hb=4870ce43dd314d557f7b14938456138c746fd617;hp=737f10de968ea4b9ee0500cf51bfe2f3b6bc060c;hpb=c0ed407fb02891f0dd364e78b6192f0e6dbe1d8d;p=dcpomatic.git diff --git a/src/lib/transcode_job.h b/src/lib/transcode_job.h index 737f10de9..8f78e7f6a 100644 --- a/src/lib/transcode_job.h +++ b/src/lib/transcode_job.h @@ -23,6 +23,7 @@ #include #include "job.h" +#include "options.h" class Encoder; @@ -32,7 +33,7 @@ class Encoder; class TranscodeJob : public Job { public: - TranscodeJob (boost::shared_ptr s, boost::shared_ptr o, Log* l); + TranscodeJob (boost::shared_ptr f, DecodeOptions od, boost::shared_ptr req); std::string name () const; void run (); @@ -42,5 +43,6 @@ protected: int remaining_time () const; private: + DecodeOptions _decode_opt; boost::shared_ptr _encoder; };