diff options
Diffstat (limited to 'src/lib/video_content.h')
| -rw-r--r-- | src/lib/video_content.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/video_content.h b/src/lib/video_content.h index d0b907cb8..62459222d 100644 --- a/src/lib/video_content.h +++ b/src/lib/video_content.h @@ -115,6 +115,11 @@ public: return _video_frame_rate; } + float original_video_frame_rate () const { + boost::mutex::scoped_lock lm (_mutex); + return _original_video_frame_rate; + } + void set_video_frame_type (VideoFrameType); void set_video_frame_rate (float); @@ -179,6 +184,7 @@ protected: void take_from_video_examiner (boost::shared_ptr<VideoExaminer>); VideoContent::Frame _video_length; + float _original_video_frame_rate; float _video_frame_rate; private: |
