X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fj2k_encoder.h;h=cea96530960b8febd04da7846a20dd095503b5fa;hb=b249700e1da7dd6631a8b4440587f4093a2bdef1;hp=06b4d429ccd95ed4c08eb599d61d02b1a2ff8421;hpb=94695fc3214917ad7310af36270ce1e0b88cdfa3;p=dcpomatic.git diff --git a/src/lib/j2k_encoder.h b/src/lib/j2k_encoder.h index 06b4d429c..cea965309 100644 --- a/src/lib/j2k_encoder.h +++ b/src/lib/j2k_encoder.h @@ -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 std::enable_shared_from_this { public: J2KEncoder (std::shared_ptr film, std::shared_ptr writer); ~J2KEncoder (); + J2KEncoder (J2KEncoder const&) = delete; + J2KEncoder& operator= (J2KEncoder const&) = delete; + /** Called to indicate that a processing run is about to begin */ void begin ();