X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_examiner.h;h=2dcacfc349fbeaa11b46219bf80867a6f682729e;hb=e894cfe3d891135d1b92b62603a464e42bd6ed5c;hp=2f713291b5a5165d42976196607ab396dd7fe50f;hpb=f1bf21a9c2581591ab80bfc997a22b93046f8c56;p=dcpomatic.git diff --git a/src/lib/video_examiner.h b/src/lib/video_examiner.h index 2f713291b..2dcacfc34 100644 --- a/src/lib/video_examiner.h +++ b/src/lib/video_examiner.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 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 @@ -17,13 +17,25 @@ */ -#include +/** @file src/lib/video_examiner.h + * @brief VideoExaminer class. + */ + #include "types.h" +#include "video_content.h" +#include +/** @class VideoExaminer + * @brief Parent for classes which examine video sources and obtain information about them. + */ class VideoExaminer { public: - virtual float video_frame_rate () const = 0; - virtual libdcp::Size video_size () const = 0; - virtual ContentVideoFrame video_length () const = 0; + virtual ~VideoExaminer () {} + virtual boost::optional video_frame_rate () const = 0; + virtual dcp::Size video_size () const = 0; + virtual ContentTime video_length () const = 0; + virtual boost::optional sample_aspect_ratio () const { + return boost::optional (); + } };