X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_examiner.h;h=53fab327e495dac5a34ef37040cabf0603773a71;hb=c7f45cd00b94393f6e15428a2ea256995f890412;hp=792c7b4ebe84a73367f99a60a3f8f884732d34fb;hpb=14e4bc18e65378332604016bd6239861a083d5bf;p=dcpomatic.git diff --git a/src/lib/image_examiner.h b/src/lib/image_examiner.h index 792c7b4eb..53fab327e 100644 --- a/src/lib/image_examiner.h +++ b/src/lib/image_examiner.h @@ -1,19 +1,20 @@ /* 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 . */ @@ -24,17 +25,28 @@ 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); - boost::optional video_frame_rate () const; - dcp::Size video_size () const; - Frame video_length () const { + bool has_video () const override { + return true; + } + boost::optional video_frame_rate () const override; + dcp::Size video_size () const override; + Frame video_length () const override { return _video_length; } + bool yuv () const override; + VideoRange range () const override { + return VideoRange::FULL; + } + PixelQuanta pixel_quanta () const override { + /* See ::yuv - we're assuming the image is not YUV and so not subsampled */ + return {}; + } private: - boost::weak_ptr _film; - boost::shared_ptr _image_content; + std::weak_ptr _film; + std::shared_ptr _image_content; boost::optional _video_size; Frame _video_length; };