diff options
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 03d43d0f6..ef780dc3e 100644 --- a/src/lib/dcp_examiner.h +++ b/src/lib/dcp_examiner.h @@ -27,8 +27,8 @@ class DCPExaminer : public VideoExaminer, public AudioExaminer public: DCPExaminer (boost::shared_ptr<const DCPContent>); - float video_frame_rate () const { - return _video_frame_rate.get_value_or (24); + boost::optional<float> video_frame_rate () const { + return _video_frame_rate; } dcp::Size video_size () const { |
