diff options
Diffstat (limited to 'src/lib/transcode_job.h')
| -rw-r--r-- | src/lib/transcode_job.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/transcode_job.h b/src/lib/transcode_job.h index 9e827e412..ae1a75804 100644 --- a/src/lib/transcode_job.h +++ b/src/lib/transcode_job.h @@ -25,7 +25,7 @@ #include "job.h" #include <boost/shared_ptr.hpp> -class DCPTranscoder; +class Transcoder; /** @class TranscodeJob * @brief A job which transcodes from one format to another. @@ -40,8 +40,10 @@ public: void run (); std::string status () const; + void set_transcoder (boost::shared_ptr<Transcoder> t); + private: int remaining_time () const; - boost::shared_ptr<DCPTranscoder> _transcoder; + boost::shared_ptr<Transcoder> _transcoder; }; |
