diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-10 14:04:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-10 14:04:10 +0100 |
| commit | 5c0a67869dbddb924c9f5ccb4126aa06d85b9b8b (patch) | |
| tree | c923ed014e373f5ad84cfe82f3736bcba6b7eabf /src/lib/dcp_video.h | |
| parent | 717ad0a42f8f3b744ad3bffcb094518ad59ef7b3 (diff) | |
Rename EncodedData -> Data and trim it a bit.
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 125e2c818..37d95826c 100644 --- a/src/lib/dcp_video.h +++ b/src/lib/dcp_video.h @@ -32,7 +32,7 @@ class Image; class Log; class Subtitle; class PlayerVideo; -class EncodedData; +class Data; /** @class DCPVideo * @brief A single frame of video destined for a DCP. @@ -49,8 +49,8 @@ public: DCPVideo (boost::shared_ptr<const PlayerVideo>, int, int, int, Resolution, bool b, boost::shared_ptr<Log>); DCPVideo (boost::shared_ptr<const PlayerVideo>, cxml::ConstNodePtr, boost::shared_ptr<Log>); - boost::shared_ptr<EncodedData> encode_locally (dcp::NoteHandler note); - boost::shared_ptr<EncodedData> encode_remotely (ServerDescription); + boost::shared_ptr<Data> encode_locally (dcp::NoteHandler note); + boost::shared_ptr<Data> encode_remotely (ServerDescription); int index () const { return _index; |
