summaryrefslogtreecommitdiff
path: root/src/lib/transcode_job.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/transcode_job.h')
-rw-r--r--src/lib/transcode_job.h8
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;
};