diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-16 00:53:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-16 00:53:54 +0100 |
| commit | 4a4725e41bf4070969223f9c40885063c50e61d0 (patch) | |
| tree | 7c8896f8080b7bf66773d5b63ded45b83b675712 /src/lib/video_examiner.h | |
| parent | 6300edd66433dffed9fb30a0b3b8db7ca3355809 (diff) | |
float -> double in a few places.
Diffstat (limited to 'src/lib/video_examiner.h')
| -rw-r--r-- | src/lib/video_examiner.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/video_examiner.h b/src/lib/video_examiner.h index f8d247d15..66d3ae5b5 100644 --- a/src/lib/video_examiner.h +++ b/src/lib/video_examiner.h @@ -32,10 +32,10 @@ class VideoExaminer { public: virtual ~VideoExaminer () {} - virtual boost::optional<float> video_frame_rate () const = 0; + virtual boost::optional<double> video_frame_rate () const = 0; virtual dcp::Size video_size () const = 0; virtual Frame video_length () const = 0; - virtual boost::optional<float> sample_aspect_ratio () const { - return boost::optional<float> (); + virtual boost::optional<double> sample_aspect_ratio () const { + return boost::optional<double> (); } }; |
