Don't share _terminate.
authorCarl Hetherington <cth@carlh.net>
Wed, 2 Sep 2015 16:03:50 +0000 (17:03 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 2 Sep 2015 16:03:50 +0000 (17:03 +0100)
_terminate was being shared between enqueue() and the encoding
threads so that when terminating and recreating the encoding
threads any pending enqueue() was dropped (#683).

ChangeLog
src/lib/encoder.cc
src/lib/encoder.h

index db822ffa86b602f10cd44a45a3273496b296ed0b..d6821b4a2af9266d5641afb9459b3b6d4fe75388 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-09-02  c.hetherington  <cth@carlh.net>
+
+       * Fix problems when changing the number
+       of encoding servers / threads during an
+       encode (#683).
+
 2015-09-02  Carl Hetherington  <cth@carlh.net>
 
        * Version 2.1.50 released.
index 00e28e1ebabbdd235f7cd31d964fbab03bf3be17..06fc81ad75f2e29913d0cbcf6b2b16a5ffd82f35 100644 (file)
@@ -61,7 +61,8 @@ Encoder::Encoder (shared_ptr<const Film> film, weak_ptr<Job> j, shared_ptr<Write
        , _video_frames_enqueued (0)
        , _left_done (false)
        , _right_done (false)
-       , _terminate (false)
+       , _terminate_enqueue (false)
+       , _terminate_encoding (false)
        , _writer (writer)
 {
        servers_list_changed ();
@@ -70,6 +71,11 @@ Encoder::Encoder (shared_ptr<const Film> film, weak_ptr<Job> j, shared_ptr<Write
 Encoder::~Encoder ()
 {
        terminate_threads ();
+
+       boost::mutex::scoped_lock lm (_queue_mutex);
+       _terminate_enqueue = true;
+       _full_condition.notify_all ();
+       _empty_condition.notify_all ();
 }
 
 void
@@ -183,13 +189,13 @@ Encoder::enqueue (shared_ptr<PlayerVideo> pv)
        /* XXX: discard 3D here if required */
 
        /* Wait until the queue has gone down a bit */
-       while (_queue.size() >= threads * 2 && !_terminate) {
+       while (_queue.size() >= threads * 2 && !_terminate_enqueue) {
                LOG_TIMING ("decoder-sleep queue=%1", _queue.size());
                _full_condition.wait (queue_lock);
                LOG_TIMING ("decoder-wake queue=%1", _queue.size());
        }
 
-       if (_terminate) {
+       if (_terminate_enqueue) {
                return;
        }
 
@@ -256,7 +262,7 @@ Encoder::terminate_threads ()
 {
        {
                boost::mutex::scoped_lock queue_lock (_queue_mutex);
-               _terminate = true;
+               _terminate_encoding = true;
                _full_condition.notify_all ();
                _empty_condition.notify_all ();
        }
@@ -271,7 +277,7 @@ Encoder::terminate_threads ()
        }
 
        _threads.clear ();
-       _terminate = false;
+       _terminate_encoding = false;
 }
 
 void
@@ -294,11 +300,11 @@ try
 
                LOG_TIMING ("encoder-sleep thread=%1", boost::this_thread::get_id());
                boost::mutex::scoped_lock lock (_queue_mutex);
-               while (_queue.empty () && !_terminate) {
+               while (_queue.empty () && !_terminate_encoding) {
                        _empty_condition.wait (lock);
                }
 
-               if (_terminate) {
+               if (_terminate_encoding) {
                        return;
                }
 
index caadda591d20a606e97c0d9388c0a8abe533539f..76c87a9f7ad2ea57468a58408ea3ca663821340b 100644 (file)
@@ -96,7 +96,8 @@ private:
        bool _right_done;
 
        /* XXX: probably should be atomic */
-       bool _terminate;
+       bool _terminate_enqueue;
+       bool _terminate_encoding;
        /** Mutex for _threads */
        mutable boost::mutex _threads_mutex;
        std::list<boost::thread *> _threads;