summaryrefslogtreecommitdiff
path: root/src/lib/dcp_examiner.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-02-22 01:25:03 +0100
committerCarl Hetherington <cth@carlh.net>2024-02-22 01:25:03 +0100
commita45f6245e8cc785fab436c9282fa3d1baf3a8575 (patch)
treec6ae82be2319446c35ebad6666f68dbb109f8904 /src/lib/dcp_examiner.h
parent6c3ded5baac385d95ec2cf5e625c6c796c23e318 (diff)
parent3ffd0163026be24e5373e0674c3301ed37546e44 (diff)
Merge tag 'v2.16.78' into v2.17.xv2.17.12
Diffstat (limited to 'src/lib/dcp_examiner.h')
-rw-r--r--src/lib/dcp_examiner.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h
index 444fb7567..04fa31ea4 100644
--- a/src/lib/dcp_examiner.h
+++ b/src/lib/dcp_examiner.h
@@ -48,10 +48,8 @@ public:
return _video_frame_rate;
}
- dcp::Size video_size () const override {
- DCPOMATIC_ASSERT (_has_video);
- DCPOMATIC_ASSERT (_video_size);
- return *_video_size;
+ boost::optional<dcp::Size> video_size() const override {
+ return _video_size;
}
Frame video_length () const override {