diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-14 12:11:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-14 12:11:50 +0100 |
| commit | 3ae21bc7e7e0278a1ee15d365971eeb3dcabcbf6 (patch) | |
| tree | dc231aeb0f9d31e6e3e04888b4302130953385e4 /src/lib/dcp_examiner.h | |
| parent | b19543a036c389c9970a65f77606afb55d9fd11d (diff) | |
Set correct video frame type when importing DCPs (part of #806).
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 708d2e0ad..6fc041cc6 100644 --- a/src/lib/dcp_examiner.h +++ b/src/lib/dcp_examiner.h @@ -80,6 +80,10 @@ public: return _standard; } + bool three_d () const { + return _three_d; + } + private: boost::optional<double> _video_frame_rate; boost::optional<dcp::Size> _video_size; @@ -92,4 +96,5 @@ private: bool _encrypted; bool _kdm_valid; boost::optional<dcp::Standard> _standard; + bool _three_d; }; |
