summaryrefslogtreecommitdiff
path: root/src/lib/encoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-12-09 14:55:47 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-09 14:55:47 +0000
commit01d0c14f03698d25af51f7d1a1b3112958da1cf3 (patch)
treeacd60313b4decc3c6a5088e879ee9e08d9981a38 /src/lib/encoder.h
parentb30d41f0dd8d7e1efb8f5557cf503c35a7d309b2 (diff)
Remove unused variable.
Diffstat (limited to 'src/lib/encoder.h')
-rw-r--r--src/lib/encoder.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/encoder.h b/src/lib/encoder.h
index 3d0597cfa..d5b1455d7 100644
--- a/src/lib/encoder.h
+++ b/src/lib/encoder.h
@@ -53,7 +53,7 @@ class PlayerVideo;
class Encoder : public boost::noncopyable, public ExceptionStore
{
public:
- Encoder (boost::shared_ptr<const Film>, boost::weak_ptr<Job>, boost::shared_ptr<Writer>);
+ Encoder (boost::shared_ptr<const Film>, boost::shared_ptr<Writer>);
virtual ~Encoder ();
/** Called to indicate that a processing run is about to begin */
@@ -81,7 +81,6 @@ private:
/** Film that we are encoding */
boost::shared_ptr<const Film> _film;
- boost::weak_ptr<Job> _job;
/** Mutex for _time_history and _video_frames_enqueued */
mutable boost::mutex _state_mutex;