summaryrefslogtreecommitdiff
path: root/src/lib/encoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-01 10:27:27 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-01 10:27:27 +0100
commitc5c005aec1393fc606db035ee71b8d831c370ab1 (patch)
tree8c0b17799e13cdb2365c88695538e216419130f2 /src/lib/encoder.h
parentedf4af070a9ffa0a13f9078f5509c1e64121564a (diff)
Protect _threads with a mutex since it may be updated from
the GUI thread (via ServersChanged) or from the job thread (via end ()).
Diffstat (limited to 'src/lib/encoder.h')
-rw-r--r--src/lib/encoder.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lib/encoder.h b/src/lib/encoder.h
index fbae07a9a..9b1b528bb 100644
--- a/src/lib/encoder.h
+++ b/src/lib/encoder.h
@@ -82,7 +82,7 @@ private:
boost::shared_ptr<const Film> _film;
boost::weak_ptr<Job> _job;
- /** Mutex for _time_history and _last_frame */
+ /** Mutex for _time_history and _video_frames_enqueued */
mutable boost::mutex _state_mutex;
/** List of the times of completion of the last _history_size frames;
first is the most recently completed.
@@ -90,16 +90,17 @@ private:
std::list<struct timeval> _time_history;
/** Number of frames that we should keep history for */
static int const _history_size;
-
/** Number of video frames enqueued so far */
int _video_frames_enqueued;
bool _left_done;
bool _right_done;
- bool _terminate;
- std::list<boost::shared_ptr<DCPVideo> > _queue;
+ boost::atomic<bool> _terminate;
+ /** Mutex for _threads */
+ mutable boost::mutex _threads_mutex;
std::list<boost::thread *> _threads;
- mutable boost::mutex _mutex;
+ mutable boost::mutex _queue_mutex;
+ std::list<boost::shared_ptr<DCPVideo> > _queue;
/** condition to manage thread wakeups when we have nothing to do */
boost::condition _empty_condition;
/** condition to manage thread wakeups when we have too much to do */