summaryrefslogtreecommitdiff
path: root/src/cpl.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-16 19:21:04 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-18 01:10:32 +0100
commit5e4f750326013cdf8c7d1f7a677f92b4aec436cf (patch)
tree1243859e67e0096f5a23f001e96b9f954cd85ec4 /src/cpl.cc
parent6e4dfa6cba7cb878bc3931140189cbf35dd4718b (diff)
Add can_be_read() to CPL.
Diffstat (limited to 'src/cpl.cc')
-rw-r--r--src/cpl.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cpl.cc b/src/cpl.cc
index 9dfff888..ea49eb34 100644
--- a/src/cpl.cc
+++ b/src/cpl.cc
@@ -842,3 +842,11 @@ CPL::set_main_picture_active_area(dcp::Size area)
_main_picture_active_area = area;
}
+
+bool
+CPL::can_be_read() const
+{
+ auto r = reels();
+ return std::all_of(r.begin(), r.end(), [](shared_ptr<const Reel> reel) { return reel->can_be_read(); });
+}
+