X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fimage_examiner.h;h=ca8ecf9c8c7a013dfbd91557c5357faa68997175;hp=a3aecbcf774859dc2667e608a231045d4ab9470b;hb=386e25f3b9d3fa59cbdeed458d9b3e0d21e338b8;hpb=42c5b3622a63ff83cacc2b062aee94a7086e052e diff --git a/src/lib/image_examiner.h b/src/lib/image_examiner.h index a3aecbcf7..ca8ecf9c8 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 . */ @@ -26,12 +27,18 @@ class ImageExaminer : public VideoExaminer public: ImageExaminer (boost::shared_ptr, boost::shared_ptr, boost::shared_ptr); + bool has_video () const { + return true; + } boost::optional video_frame_rate () const; dcp::Size video_size () const; Frame video_length () const { return _video_length; } bool yuv () const; + VideoRange range () const { + return VIDEO_RANGE_FULL; + } private: boost::weak_ptr _film;