diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-12-12 00:30:33 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-12-12 00:30:33 +0000 |
| commit | 3c414bf90d4cfcfe342c0b057b5134f72485fe32 (patch) | |
| tree | 543e3635577f04a58f1dc252fa0b888a4daeb005 /src/lib/video_mxf_content.cc | |
| parent | f851a375fc5bb9095def34c05a61f69e33139426 (diff) | |
Fix content properties (#1428).
Diffstat (limited to 'src/lib/video_mxf_content.cc')
| -rw-r--r-- | src/lib/video_mxf_content.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/video_mxf_content.cc b/src/lib/video_mxf_content.cc index 9d2af1a32..436046890 100644 --- a/src/lib/video_mxf_content.cc +++ b/src/lib/video_mxf_content.cc @@ -130,7 +130,8 @@ VideoMXFContent::approximate_length () const } void -VideoMXFContent::add_properties (list<UserProperty>& p) const +VideoMXFContent::add_properties (shared_ptr<const Film> film, list<UserProperty>& p) const { + Content::add_properties (film, p); video->add_properties (p); } |
