From c5c005aec1393fc606db035ee71b8d831c370ab1 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 1 Sep 2015 10:27:27 +0100 Subject: Protect _threads with a mutex since it may be updated from the GUI thread (via ServersChanged) or from the job thread (via end ()). --- src/lib/encoder.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/lib/encoder.h') 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 _film; boost::weak_ptr _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 _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 > _queue; + boost::atomic _terminate; + /** Mutex for _threads */ + mutable boost::mutex _threads_mutex; std::list _threads; - mutable boost::mutex _mutex; + mutable boost::mutex _queue_mutex; + std::list > _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 */ -- cgit v1.2.3