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/dcp_examiner.h | |
| parent | 6300edd66433dffed9fb30a0b3b8db7ca3355809 (diff) | |
float -> double in a few places.
Diffstat (limited to 'src/lib/dcp_examiner.h')
| -rw-r--r-- | src/lib/dcp_examiner.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h index ed457b5c2..532bad60c 100644 --- a/src/lib/dcp_examiner.h +++ b/src/lib/dcp_examiner.h @@ -31,7 +31,7 @@ class DCPExaminer : public VideoExaminer, public AudioExaminer public: DCPExaminer (boost::shared_ptr<const DCPContent>); - boost::optional<float> video_frame_rate () const { + boost::optional<double> video_frame_rate () const { return _video_frame_rate; } @@ -72,7 +72,7 @@ public: } private: - boost::optional<float> _video_frame_rate; + boost::optional<double> _video_frame_rate; boost::optional<dcp::Size> _video_size; Frame _video_length; boost::optional<int> _audio_channels; |
