diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-11-21 01:59:04 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-11-21 01:59:04 +0000 |
| commit | 254b3044d72de6b033d7c584f5abd2b9aa70aad5 (patch) | |
| tree | 8a5c83c1b2dea690672663dedb2f3aa50f4473dc /test/video_mxf_content_test.cc | |
| parent | c31b9542c58ae1cbfae7ec3ba4911359fd010ba2 (diff) | |
Take Film pointer out of Content.
Diffstat (limited to 'test/video_mxf_content_test.cc')
| -rw-r--r-- | test/video_mxf_content_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/video_mxf_content_test.cc b/test/video_mxf_content_test.cc index 9104702b6..5da7ad641 100644 --- a/test/video_mxf_content_test.cc +++ b/test/video_mxf_content_test.cc @@ -50,7 +50,7 @@ BOOST_AUTO_TEST_CASE (video_mxf_content_test) film->set_container (Ratio::from_id ("185")); film->set_name ("video_mxf_content_test"); - shared_ptr<Content> content = content_factory(film, ref_mxf).front(); + shared_ptr<Content> content = content_factory(ref_mxf).front(); shared_ptr<VideoMXFContent> check = dynamic_pointer_cast<VideoMXFContent> (content); BOOST_REQUIRE (check); film->examine_and_add_content (content); |
