summaryrefslogtreecommitdiff
path: root/src/lib/video_mxf_examiner.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-04-12 11:32:55 +0200
committerCarl Hetherington <cth@carlh.net>2025-04-12 11:32:55 +0200
commit3dcabe8d9c7d82f6be4790fd68db62188ce64710 (patch)
treee23124f9d4faab4abaa2d532f2fff0d7afd1d327 /src/lib/video_mxf_examiner.h
parent401821e667cd4c719dc0e6e84a1fa662c8d30c86 (diff)
Add has_alpha() flag to VideoContent.
Diffstat (limited to 'src/lib/video_mxf_examiner.h')
-rw-r--r--src/lib/video_mxf_examiner.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/video_mxf_examiner.h b/src/lib/video_mxf_examiner.h
index e4cd98f07..2dad09c08 100644
--- a/src/lib/video_mxf_examiner.h
+++ b/src/lib/video_mxf_examiner.h
@@ -45,6 +45,9 @@ public:
PixelQuanta pixel_quanta () const override {
return {};
}
+ bool has_alpha() const override {
+ return false;
+ }
private:
std::shared_ptr<dcp::PictureAsset> _asset;