X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fvideo_examiner.h;h=66d3ae5b57ea2b056a9678ac737b660de38ee0c9;hp=87e9a04288a20fb13018391ad4c124a58b757e05;hb=aeb835a18c8df347e0ed68fb24631b320abeb611;hpb=1c13441a19aa387ddd8ac0c972207ccbbe3114d8 diff --git a/src/lib/video_examiner.h b/src/lib/video_examiner.h index 87e9a0428..66d3ae5b5 100644 --- a/src/lib/video_examiner.h +++ b/src/lib/video_examiner.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2014 Carl Hetherington + Copyright (C) 2013-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,9 +21,9 @@ * @brief VideoExaminer class. */ -#include #include "types.h" #include "video_content.h" +#include /** @class VideoExaminer * @brief Parent for classes which examine video sources and obtain information about them. @@ -32,7 +32,10 @@ class VideoExaminer { public: virtual ~VideoExaminer () {} - virtual float video_frame_rate () const = 0; + virtual boost::optional video_frame_rate () const = 0; virtual dcp::Size video_size () const = 0; - virtual ContentTime video_length () const = 0; + virtual Frame video_length () const = 0; + virtual boost::optional sample_aspect_ratio () const { + return boost::optional (); + } };