Supporters update.
[dcpomatic.git] / src / lib / ffmpeg_examiner.h
index 36efc92b1b6e1090aa1db490404795cf028bca2f..45313ec18cc22f501bf626c74f6bb5459d4a18e4 100644 (file)
@@ -35,13 +35,13 @@ class FFmpegExaminer : public FFmpeg, public VideoExaminer
 public:
        FFmpegExaminer (std::shared_ptr<const FFmpegContent>, std::shared_ptr<Job> job = std::shared_ptr<Job>());
 
-       bool has_video () const;
+       bool has_video () const override;
 
-       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;
+       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;
 
        std::vector<std::shared_ptr<FFmpegSubtitleStream>> subtitle_streams () const {
                return _subtitle_streams;
@@ -55,9 +55,9 @@ public:
                return _first_video;
        }
 
-       VideoRange range () const;
+       VideoRange range () const override;
 
-       PixelQuanta pixel_quanta () const;
+       PixelQuanta pixel_quanta () const override;
 
        AVColorRange color_range () const {
                return video_codec_context()->color_range;
@@ -77,6 +77,8 @@ public:
 
        boost::optional<int> bits_per_pixel () const;
 
+       bool has_alpha() const;
+
        boost::optional<double> rotation () const {
                return _rotation;
        }