From 925d97b8e51421bf509c5ffbe4abe8f77a6ca95e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 9 Nov 2021 22:24:18 +0100 Subject: It doesn't seem necessary to use shared_ptr for the DCPVideo queue in J2KEncoder. --- src/lib/dcp_video.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/dcp_video.h') diff --git a/src/lib/dcp_video.h b/src/lib/dcp_video.h index 862b787d2..3bd516ccd 100644 --- a/src/lib/dcp_video.h +++ b/src/lib/dcp_video.h @@ -45,8 +45,8 @@ 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; + DCPVideo (DCPVideo const&) = default; + DCPVideo& operator= (DCPVideo const&) = default; dcp::ArrayData encode_locally () const; dcp::ArrayData encode_remotely (EncodeServerDescription, int timeout = 30) const; -- cgit v1.2.3