diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-08 14:29:01 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-28 23:41:30 +0200 |
| commit | 8a2493a33dfc8099213487724d672614f734adca (patch) | |
| tree | ae6908690cf5630882b9b810999f7f00cf4cb93e | |
| parent | c138146315d6c5b31e0a8991a80c0da9ac9162ed (diff) | |
More missing override labels.
| -rw-r--r-- | src/lib/dcp_examiner.h | 2 | ||||
| -rw-r--r-- | src/lib/ffmpeg_examiner.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h index 985d86bfc..b26309773 100644 --- a/src/lib/dcp_examiner.h +++ b/src/lib/dcp_examiner.h @@ -41,7 +41,7 @@ class DCPExaminer : public VideoExaminer, public AudioExaminer public: explicit DCPExaminer (std::shared_ptr<const DCPContent>, bool tolerant); - bool has_video () const { + bool has_video () const override { return _has_video; } diff --git a/src/lib/ffmpeg_examiner.h b/src/lib/ffmpeg_examiner.h index da88156e4..10d060707 100644 --- a/src/lib/ffmpeg_examiner.h +++ b/src/lib/ffmpeg_examiner.h @@ -35,7 +35,7 @@ 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 override; dcp::Size video_size () const override; |
