summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-04-12 11:32:18 +0200
committerCarl Hetherington <cth@carlh.net>2025-04-12 11:32:18 +0200
commit22662089349e90258bc330a8f7bae637fb3eba1d (patch)
treeb27717eb700e383e1d00c11205646f7e2bf19367
parent7900d3f3fe825b7be59c0770180e58c8bbf6059e (diff)
White space: video_examiner.h
-rw-r--r--src/lib/video_examiner.h16
1 files 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<double> video_frame_rate () const = 0;
+ virtual boost::optional<double> video_frame_rate() const = 0;
/** @return video size (if known) */
virtual boost::optional<dcp::Size> 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<double> sample_aspect_ratio () const {
+ virtual boost::optional<double> 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;
};