X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fencoder.h;h=76c87a9f7ad2ea57468a58408ea3ca663821340b;hb=bd709c1e98e7653dafe7dff302440a7890140c7d;hp=12f1e15ffe87b5d1d94cf9d19bdd8cab143fb8dc;hpb=14e4bc18e65378332604016bd6239861a083d5bf;p=dcpomatic.git diff --git a/src/lib/encoder.h b/src/lib/encoder.h index 12f1e15ff..76c87a9f7 100644 --- a/src/lib/encoder.h +++ b/src/lib/encoder.h @@ -26,6 +26,7 @@ #include "util.h" #include "cross.h" +#include "exception_store.h" #include #include #include @@ -81,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. @@ -89,16 +90,19 @@ 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; + /* XXX: probably should be atomic */ + bool _terminate_enqueue; + bool _terminate_encoding; + /** 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 */