X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_video.h;h=0bb583c57488432e86b27fbf2411430660d6a147;hb=0c0eeadf18add7e9165c0a0946ea0a52aac9990f;hp=5d8b9b720a3aef0da98223f287e3668755d8f8b9;hpb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;p=dcpomatic.git diff --git a/src/lib/dcp_video.h b/src/lib/dcp_video.h index 5d8b9b720..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, int, int, Resolution); + 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);