summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/video_decoder.h')
-rw-r--r--src/lib/video_decoder.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h
index b47d7fc3a..f0d140d80 100644
--- a/src/lib/video_decoder.h
+++ b/src/lib/video_decoder.h
@@ -44,6 +44,8 @@ public:
/** @return length according to our content's header */
virtual ContentVideoFrame video_length () const = 0;
+ void set_video_container_size (libdcp::Size);
+
protected:
void video (boost::shared_ptr<Image>, bool, Time);
@@ -57,6 +59,7 @@ private:
boost::shared_ptr<TimedSubtitle> _timed_subtitle;
FrameRateConversion _frame_rate_conversion;
bool _odd;
+ boost::optional<libdcp::Size> _video_container_size;
};
#endif