Fix font_id_map errors when importing DCP subtitles that have no
[dcpomatic.git] / src / lib / video_mxf_examiner.h
index 37badafba4adc15f2a96b60986806d9255e993bd..f5c9bf1fd8ac8c2b83625118d140d1227aa12d12 100644 (file)
@@ -31,17 +31,20 @@ class VideoMXFExaminer : public VideoExaminer
 public:
        explicit VideoMXFExaminer (std::shared_ptr<const VideoMXFContent>);
 
-       bool has_video () const {
+       bool has_video () const override {
                return true;
        }
-       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;
-       VideoRange range () const {
+       boost::optional<double> video_frame_rate () const override;
+       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:
        std::shared_ptr<dcp::PictureAsset> _asset;