summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/dcp_video.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/dcp_video.h b/src/lib/dcp_video.h
index 8ecae20a9..b8ddb1b02 100644
--- a/src/lib/dcp_video.h
+++ b/src/lib/dcp_video.h
@@ -58,10 +58,18 @@ public:
dcp::ArrayData encode_locally() const;
dcp::ArrayData encode_remotely(EncodeServerDescription, int timeout = 30) const;
+ std::shared_ptr<const PlayerVideo> frame() const {
+ return _frame;
+ }
+
int index() const {
return _index;
}
+ Resolution resolution() const {
+ return _resolution;
+ }
+
Eyes eyes() const;
bool same(std::shared_ptr<const DCPVideo> other) const;