diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-29 08:31:23 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-29 08:31:23 +0200 |
| commit | b249700e1da7dd6631a8b4440587f4093a2bdef1 (patch) | |
| tree | 71f88855e72b11f927d194f0676bac93845d26be /src/lib/dcp_video.h | |
| parent | 94695fc3214917ad7310af36270ce1e0b88cdfa3 (diff) | |
Remove use of boost::noncopyable.
Diffstat (limited to 'src/lib/dcp_video.h')
| -rw-r--r-- | src/lib/dcp_video.h | 5 |
1 files changed, 4 insertions, 1 deletions
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<const PlayerVideo>, int index, int dcp_fps, int bandwidth, Resolution r); DCPVideo (std::shared_ptr<const PlayerVideo>, cxml::ConstNodePtr); + DCPVideo (DCPVideo const&) = delete; + DCPVideo& operator= (DCPVideo const&) = delete; + dcp::ArrayData encode_locally (); dcp::ArrayData encode_remotely (EncodeServerDescription, int timeout = 30); |
