From 22662089349e90258bc330a8f7bae637fb3eba1d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 12 Apr 2025 11:32:18 +0200 Subject: White space: video_examiner.h --- src/lib/video_examiner.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/lib/video_examiner.h b/src/lib/video_examiner.h index b670dafc5..471537f7a 100644 --- a/src/lib/video_examiner.h +++ b/src/lib/video_examiner.h @@ -35,22 +35,22 @@ class VideoExaminer { public: - virtual ~VideoExaminer () {} + virtual ~VideoExaminer() {} - virtual bool has_video () const = 0; + virtual bool has_video() const = 0; /** @return video frame rate (if known); must not be called if has_video() == false */ - virtual boost::optional video_frame_rate () const = 0; + virtual boost::optional video_frame_rate() const = 0; /** @return video size (if known) */ virtual boost::optional video_size() const = 0; /** @return video length in frames; must not be called if has_video() == false */ - virtual Frame video_length () const = 0; + virtual Frame video_length() const = 0; /** @return video sample aspect ratio (if known); must not be called if has_video() == false */ - virtual boost::optional sample_aspect_ratio () const { + virtual boost::optional sample_aspect_ratio() const { return {}; } /** @return true if this video is in YUV; must not be called if has_video() == false */ - virtual bool yuv () const = 0; - virtual VideoRange range () const = 0; - virtual PixelQuanta pixel_quanta () const = 0; + virtual bool yuv() const = 0; + virtual VideoRange range() const = 0; + virtual PixelQuanta pixel_quanta() const = 0; }; -- cgit v1.2.3