diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-10 11:54:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-10 11:54:19 +0100 |
| commit | d8ea1796f34ff894b148a0af78c0a547e0496ee1 (patch) | |
| tree | 2a3177217dee39c1a4dbe795c21369236e7a5533 /src/lib/transcode_job.h | |
| parent | 7f40b703e8a83f07a1c8bffb45cd40ebcc238418 (diff) | |
Rename some classes.
Diffstat (limited to 'src/lib/transcode_job.h')
| -rw-r--r-- | src/lib/transcode_job.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 <boost/shared_ptr.hpp> -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<Transcoder> t); + void set_encoder (boost::shared_ptr<Encoder> t); private: int remaining_time () const; - boost::shared_ptr<Transcoder> _transcoder; + boost::shared_ptr<Encoder> _encoder; }; |
