X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_examiner.h;h=039c494b52fe98f630798729207b65b26b4d46f3;hb=7478dcb6bac871d7839dad9923cdb2d06cd12790;hp=2f713291b5a5165d42976196607ab396dd7fe50f;hpb=f1bf21a9c2581591ab80bfc997a22b93046f8c56;p=dcpomatic.git diff --git a/src/lib/video_examiner.h b/src/lib/video_examiner.h index 2f713291b..039c494b5 100644 --- a/src/lib/video_examiner.h +++ b/src/lib/video_examiner.h @@ -19,11 +19,13 @@ #include #include "types.h" +#include "video_content.h" class VideoExaminer { public: + virtual ~VideoExaminer () {} virtual float video_frame_rate () const = 0; virtual libdcp::Size video_size () const = 0; - virtual ContentVideoFrame video_length () const = 0; + virtual VideoContent::Frame video_length () const = 0; };