diff options
Diffstat (limited to 'src/lib/dcp_examiner.h')
| -rw-r--r-- | src/lib/dcp_examiner.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h index f2609ed3e..542f018c9 100644 --- a/src/lib/dcp_examiner.h +++ b/src/lib/dcp_examiner.h @@ -75,6 +75,10 @@ public: return _kdm_valid; } + boost::optional<dcp::Standard> standard () const { + return _standard; + } + private: boost::optional<double> _video_frame_rate; boost::optional<dcp::Size> _video_size; @@ -86,4 +90,5 @@ private: bool _has_subtitles; bool _encrypted; bool _kdm_valid; + boost::optional<dcp::Standard> _standard; }; |
