X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fj2k_encoder.h;h=63228a6b8fac8cb7635de681bbabf4d5b14b46d2;hb=refs%2Fheads%2F2493-player-export-frame;hp=06b4d429ccd95ed4c08eb599d61d02b1a2ff8421;hpb=3339d3bce70afe9ae2ca10e9fcfc4b54b748fbf4;p=dcpomatic.git diff --git a/src/lib/j2k_encoder.h b/src/lib/j2k_encoder.h index 06b4d429c..63228a6b8 100644 --- a/src/lib/j2k_encoder.h +++ b/src/lib/j2k_encoder.h @@ -28,23 +28,23 @@ */ -#include "util.h" #include "cross.h" +#include "enum_indexed_vector.h" #include "event_history.h" #include "exception_store.h" -#include -#include -#include +#include "writer.h" #include #include +#include +#include +#include #include #include -class Film; -class EncodeServerDescription; class DCPVideo; -class Writer; +class EncodeServerDescription; +class Film; class Job; class PlayerVideo; @@ -55,12 +55,15 @@ class PlayerVideo; * This class keeps a queue of frames to be encoded and distributes * the work around threads and encoding servers. */ -class J2KEncoder : public boost::noncopyable, public ExceptionStore, public std::enable_shared_from_this +class J2KEncoder : public ExceptionStore { public: - J2KEncoder (std::shared_ptr film, std::shared_ptr writer); + J2KEncoder(std::shared_ptr film, Writer& writer); ~J2KEncoder (); + J2KEncoder (J2KEncoder const&) = delete; + J2KEncoder& operator= (J2KEncoder const&) = delete; + /** Called to indicate that a processing run is about to begin */ void begin (); @@ -77,8 +80,6 @@ public: private: - static void call_servers_list_changed (std::weak_ptr encoder); - void frame_done (); void encoder_thread (boost::optional); @@ -93,16 +94,16 @@ private: std::shared_ptr _threads; mutable boost::mutex _queue_mutex; - std::list> _queue; + 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 */ boost::condition _full_condition; - std::shared_ptr _writer; + Writer& _writer; Waker _waker; - std::shared_ptr _last_player_video[static_cast(Eyes::COUNT)]; + EnumIndexedVector, Eyes> _last_player_video; boost::optional _last_player_video_time; boost::signals2::scoped_connection _server_found_connection;