X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftranscode_job.h;h=47611525a30fdc4c536ab827282f9e47892afcba;hb=c180f317d5a8b27dd191c1f2228ceb6fc4039393;hp=ae1a758048b4555ee42ce8468761595c018757d0;hpb=bb6b53bdb63754fe0cea1368f69f39a3c3cbbdfd;p=dcpomatic.git diff --git a/src/lib/transcode_job.h b/src/lib/transcode_job.h index ae1a75804..47611525a 100644 --- a/src/lib/transcode_job.h +++ b/src/lib/transcode_job.h @@ -25,10 +25,10 @@ #include "job.h" #include -class Transcoder; +class Encoder; /** @class TranscodeJob - * @brief A job which transcodes from one format to another. + * @brief A job which transcodes a Film to another format. */ class TranscodeJob : public Job { @@ -40,10 +40,10 @@ public: void run (); std::string status () const; - void set_transcoder (boost::shared_ptr t); + void set_encoder (boost::shared_ptr t); private: int remaining_time () const; - boost::shared_ptr _transcoder; + boost::shared_ptr _encoder; };