summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_image_proxy.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-11-07 03:03:29 +0100
committerCarl Hetherington <cth@carlh.net>2021-11-22 23:59:43 +0100
commit0254f2d12acb2ff8d770b4e47dc15599d145fe17 (patch)
treef7240c24914ce89920f5f36636f2d771a417798c /src/lib/ffmpeg_image_proxy.h
parent0060e0f1969823e4329b15a92e130c8790a2e9d5 (diff)
Put Image into the dcpomatic namespace.
Diffstat (limited to 'src/lib/ffmpeg_image_proxy.h')
-rw-r--r--src/lib/ffmpeg_image_proxy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg_image_proxy.h b/src/lib/ffmpeg_image_proxy.h
index 48317ed75..08f759664 100644
--- a/src/lib/ffmpeg_image_proxy.h
+++ b/src/lib/ffmpeg_image_proxy.h
@@ -32,7 +32,7 @@ public:
FFmpegImageProxy (std::shared_ptr<Socket> socket);
Result image (
- Image::Alignment alignment,
+ dcpomatic::Image::Alignment alignment,
boost::optional<dcp::Size> size = boost::optional<dcp::Size> ()
) const;
@@ -51,6 +51,6 @@ private:
failed-decode errors can give more detail.
*/
boost::optional<boost::filesystem::path> _path;
- mutable std::shared_ptr<Image> _image;
+ mutable std::shared_ptr<dcpomatic::Image> _image;
mutable boost::mutex _mutex;
};