summaryrefslogtreecommitdiff
path: root/src/lib/image_examiner.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-02-11 15:39:30 +0000
committerCarl Hetherington <cth@carlh.net>2014-02-11 15:39:30 +0000
commitc28b3d6f168607aca9995282b96647eb64a26dc9 (patch)
treea939edd65299674d3e522f3b3248b572ec1e351f /src/lib/image_examiner.h
parent8aeb741ccbe2edb528e98a431bf55459a6836a9b (diff)
Partial hacks to use of libdcp 1.0.
Diffstat (limited to 'src/lib/image_examiner.h')
-rw-r--r--src/lib/image_examiner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/image_examiner.h b/src/lib/image_examiner.h
index f5d515074..1800f1ea3 100644
--- a/src/lib/image_examiner.h
+++ b/src/lib/image_examiner.h
@@ -31,7 +31,7 @@ public:
ImageExaminer (boost::shared_ptr<const Film>, boost::shared_ptr<const ImageContent>, boost::shared_ptr<Job>);
float video_frame_rate () const;
- libdcp::Size video_size () const;
+ dcp::Size video_size () const;
VideoFrame video_length () const {
return _video_length;
}
@@ -39,6 +39,6 @@ public:
private:
boost::weak_ptr<const Film> _film;
boost::shared_ptr<const ImageContent> _image_content;
- boost::optional<libdcp::Size> _video_size;
+ boost::optional<dcp::Size> _video_size;
VideoFrame _video_length;
};