diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-04-27 15:13:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-04-27 15:13:42 +0100 |
| commit | dd9f4f7e9511f8f830ec05d1b60c475c6b2d71e0 (patch) | |
| tree | a2035eacaa9dc587ed119f2785dff9589db05aff /src/lib/image_examiner.h | |
| parent | 565490c24a46d0aa941f75cf2a03b195246008b4 (diff) | |
Fix incorrect container size when loading a VF/OV combination into the player.
Diffstat (limited to 'src/lib/image_examiner.h')
| -rw-r--r-- | src/lib/image_examiner.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/image_examiner.h b/src/lib/image_examiner.h index 281b002f3..2e743a82e 100644 --- a/src/lib/image_examiner.h +++ b/src/lib/image_examiner.h @@ -27,6 +27,9 @@ class ImageExaminer : public VideoExaminer public: ImageExaminer (boost::shared_ptr<const Film>, boost::shared_ptr<const ImageContent>, boost::shared_ptr<Job>); + bool has_video () const { + return true; + } boost::optional<double> video_frame_rate () const; dcp::Size video_size () const; Frame video_length () const { |
