diff options
Diffstat (limited to 'src/lib/dcp_examiner.h')
| -rw-r--r-- | src/lib/dcp_examiner.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h index c8b0ef7da..a2793c788 100644 --- a/src/lib/dcp_examiner.h +++ b/src/lib/dcp_examiner.h @@ -38,10 +38,16 @@ public: return _video_length; } + std::string name () const { + return _name; + } + private: boost::optional<float> _video_frame_rate; boost::optional<dcp::Size> _video_size; ContentTime _video_length; + /* XXX: used? */ boost::optional<int> _audio_channels; boost::optional<int> _audio_frame_rate; + std::string _name; }; |
