Supporters update.
[dcpomatic.git] / src / lib / video_mxf_examiner.h
index a16e76747a3bd8375633342c59d0313b64e82650..e4cd98f0730681c7df7a60065e3985d4af80eea8 100644 (file)
@@ -1,19 +1,20 @@
 /*
     Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
 
-    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 <http://www.gnu.org/licenses/>.
 
 */
 
@@ -28,14 +29,23 @@ namespace dcp {
 class VideoMXFExaminer : public VideoExaminer
 {
 public:
-       VideoMXFExaminer (boost::shared_ptr<const VideoMXFContent>);
-
-       boost::optional<double> video_frame_rate () const;
-       dcp::Size video_size () const;
-       Frame video_length () const;
-       boost::optional<double> sample_aspect_ratio () const;
-       bool yuv () const;
+       explicit VideoMXFExaminer (std::shared_ptr<const VideoMXFContent>);
+
+       bool has_video () const override {
+               return true;
+       }
+       boost::optional<double> video_frame_rate () const override;
+       boost::optional<dcp::Size> video_size() const override;
+       Frame video_length () const override;
+       boost::optional<double> sample_aspect_ratio () const override;
+       bool yuv () const override;
+       VideoRange range () const override {
+               return VideoRange::FULL;
+       }
+       PixelQuanta pixel_quanta () const override {
+               return {};
+       }
 
 private:
-       boost::shared_ptr<dcp::PictureAsset> _asset;
+       std::shared_ptr<dcp::PictureAsset> _asset;
 };