summaryrefslogtreecommitdiff
path: root/src/lib/image_examiner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/image_examiner.h')
-rw-r--r--src/lib/image_examiner.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/image_examiner.h b/src/lib/image_examiner.h
index 54fca7ed1..d6cdfac53 100644
--- a/src/lib/image_examiner.h
+++ b/src/lib/image_examiner.h
@@ -43,10 +43,14 @@ public:
/* See ::yuv - we're assuming the image is not YUV and so not subsampled */
return {};
}
+ bool has_alpha() const override {
+ return _has_alpha;
+ }
private:
std::weak_ptr<const Film> _film;
std::shared_ptr<const ImageContent> _image_content;
boost::optional<dcp::Size> _video_size;
Frame _video_length;
+ bool _has_alpha = false;
};