Rename some classes.
[dcpomatic.git] / src / lib / transcode_job.h
index ae1a758048b4555ee42ce8468761595c018757d0..47611525a30fdc4c536ab827282f9e47892afcba 100644 (file)
 #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;
 };