X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fimage_examiner.h;h=839e390ed17dd01570bdf6ae318e2b75fda38415;hp=6ae0422cbbd4477f8ac7878e05a2430b251711b0;hb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;hpb=09806bc8d6a48fc79d923ec1cdf6f90176bf8b6a diff --git a/src/lib/image_examiner.h b/src/lib/image_examiner.h index 6ae0422cb..839e390ed 100644 --- a/src/lib/image_examiner.h +++ b/src/lib/image_examiner.h @@ -1,44 +1,48 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ #include "video_examiner.h" -namespace Magick { - class Image; -} - class ImageContent; class ImageExaminer : public VideoExaminer { public: - ImageExaminer (boost::shared_ptr, boost::shared_ptr, boost::shared_ptr); + ImageExaminer (std::shared_ptr, std::shared_ptr, std::shared_ptr); - float video_frame_rate () const; + bool has_video () const { + return true; + } + boost::optional video_frame_rate () const; dcp::Size video_size () const; - ContentTime video_length () const { + Frame video_length () const { return _video_length; } + bool yuv () const; + VideoRange range () const { + return VIDEO_RANGE_FULL; + } private: - boost::weak_ptr _film; - boost::shared_ptr _image_content; + std::weak_ptr _film; + std::shared_ptr _image_content; boost::optional _video_size; - ContentTime _video_length; + Frame _video_length; };