Merge writer-thread with original which was time-cleanup.
[dcpomatic.git] / src / lib / encoder.h
index 20255cca90d483375cc2998f377ca748d42a2e9e..96e7a1d25e08742597da886b84e0346c89de1caf 100644 (file)
@@ -50,6 +50,7 @@ class AudioBuffers;
 class Film;
 class ServerDescription;
 class DCPVideoFrame;
+class EncodedData;
 
 /** @class Encoder
  *  @brief Encoder to J2K and WAV for DCP.
@@ -119,6 +120,9 @@ private:
        /** Number of audio frames written for the DCP so far */
        int64_t _audio_frames_out;
 
+       void writer_thread ();
+       void terminate_writer_thread ();
+
 #if HAVE_SWRESAMPLE    
        SwrContext* _swr_context;
 #endif
@@ -133,11 +137,17 @@ private:
        std::vector<SNDFILE*> _sound_files;
 
        boost::optional<int> _last_real_frame;
-       bool _process_end;
-       std::list<boost::shared_ptr<DCPVideoFrame> > _queue;
+       bool _terminate_encoder;
+       std::list<boost::shared_ptr<DCPVideoFrame> > _encode_queue;
        std::list<boost::thread *> _worker_threads;
        mutable boost::mutex _worker_mutex;
        boost::condition _worker_condition;
+
+       boost::thread* _writer_thread;
+       bool _terminate_writer;
+       std::list<std::pair<boost::shared_ptr<EncodedData>, int> > _write_queue;
+       mutable boost::mutex _writer_mutex;
+       boost::condition _writer_condition;
 };
 
 #endif