X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_video.h;h=0bb583c57488432e86b27fbf2411430660d6a147;hb=38e89b25f6042d7a9dc023bbdeff98b09cbdd26f;hp=8efd680a2a1942036fadb6f19ef3895db26e21c8;hpb=605389f7c3af2cdf1ec457ee78709cf8a5bb90d9;p=dcpomatic.git diff --git a/src/lib/dcp_video.h b/src/lib/dcp_video.h index 8efd680a2..0bb583c57 100644 --- a/src/lib/dcp_video.h +++ b/src/lib/dcp_video.h @@ -39,12 +39,15 @@ class PlayerVideo; * Objects of this class are used for the queue that we keep * of images that require encoding. */ -class DCPVideo : public boost::noncopyable +class DCPVideo { public: DCPVideo (std::shared_ptr, int index, int dcp_fps, int bandwidth, Resolution r); DCPVideo (std::shared_ptr, cxml::ConstNodePtr); + DCPVideo (DCPVideo const&) = delete; + DCPVideo& operator= (DCPVideo const&) = delete; + dcp::ArrayData encode_locally (); dcp::ArrayData encode_remotely (EncodeServerDescription, int timeout = 30);