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.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/transcode_job.h b/src/lib/transcode_job.h
index def545958..7880a925e 100644
--- a/src/lib/transcode_job.h
+++ b/src/lib/transcode_job.h
@@ -24,7 +24,7 @@
#include <boost/shared_ptr.hpp>
#include "job.h"
-class Encoder;
+class Transcoder;
/** @class TranscodeJob
* @brief A job which transcodes from one format to another.
@@ -38,6 +38,8 @@ public:
void run ();
std::string status () const;
-protected:
+private:
int remaining_time () const;
+
+ boost::shared_ptr<Transcoder> _transcoder;
};