summaryrefslogtreecommitdiff
path: root/src/lib/dcp_examiner.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-09 10:17:49 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-09 10:17:49 +0100
commit0dc52cd6e69890cd8a2c539e80389ea8bac5cc3c (patch)
tree0dbf929df2936893ce4ba952fffc54e2c1303f37 /src/lib/dcp_examiner.h
parent2cf3da72a017eebf741dfb9a5ec158df94a4e7b7 (diff)
Fix DCP name in editor; fix use of DCP entry points.
Diffstat (limited to 'src/lib/dcp_examiner.h')
-rw-r--r--src/lib/dcp_examiner.h6
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;
};