diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-11-09 22:24:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-05-02 00:31:28 +0200 |
| commit | 925d97b8e51421bf509c5ffbe4abe8f77a6ca95e (patch) | |
| tree | 9a1641342821c5896a00c28cf083fc5c79b880af /src/lib/dcp_video.h | |
| parent | 266e3f1b80d1263ff3cc8b3afaecd6ca1f88983b (diff) | |
It doesn't seem necessary to use shared_ptr for the DCPVideo queue in J2KEncoder.v2.16.x-old
Diffstat (limited to 'src/lib/dcp_video.h')
| -rw-r--r-- | src/lib/dcp_video.h | 4 |
1 files changed, 2 insertions, 2 deletions
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<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; + DCPVideo (DCPVideo const&) = default; + DCPVideo& operator= (DCPVideo const&) = default; dcp::ArrayData encode_locally () const; dcp::ArrayData encode_remotely (EncodeServerDescription, int timeout = 30) const; |
