summaryrefslogtreecommitdiff
path: root/src/lib/video_examiner.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-16 00:53:54 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-16 00:53:54 +0100
commit4a4725e41bf4070969223f9c40885063c50e61d0 (patch)
tree7c8896f8080b7bf66773d5b63ded45b83b675712 /src/lib/video_examiner.h
parent6300edd66433dffed9fb30a0b3b8db7ca3355809 (diff)
float -> double in a few places.
Diffstat (limited to 'src/lib/video_examiner.h')
-rw-r--r--src/lib/video_examiner.h6
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> ();
}
};