diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-11-01 23:40:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-02 23:10:04 +0100 |
| commit | 6fa9748f382302fa88292b4219598bb81edc7bd0 (patch) | |
| tree | 83f0859c934da2293913efb2c5ba029526e5634d /src/lib/dcp_video.h | |
| parent | b639b7b20f1ab341194bcd5c76700ca419254d11 (diff) | |
Replace dcp::Data with dcp::ArrayData
Diffstat (limited to 'src/lib/dcp_video.h')
| -rw-r--r-- | src/lib/dcp_video.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/dcp_video.h b/src/lib/dcp_video.h index 81ddc4470..aa11d7d3c 100644 --- a/src/lib/dcp_video.h +++ b/src/lib/dcp_video.h @@ -21,7 +21,7 @@ #include "types.h" #include "encode_server_description.h" #include <libcxml/cxml.h> -#include <dcp/data.h> +#include <dcp/array_data.h> /** @file src/dcp_video_frame.h * @brief A single frame of video destined for a DCP. @@ -45,8 +45,8 @@ public: DCPVideo (boost::shared_ptr<const PlayerVideo>, int, int, int, Resolution); DCPVideo (boost::shared_ptr<const PlayerVideo>, cxml::ConstNodePtr); - dcp::Data encode_locally (); - dcp::Data encode_remotely (EncodeServerDescription, int timeout = 30); + dcp::ArrayData encode_locally (); + dcp::ArrayData encode_remotely (EncodeServerDescription, int timeout = 30); int index () const { return _index; |
