summaryrefslogtreecommitdiff
path: root/test/round_trip_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-03-17 14:11:34 +0100
committerCarl Hetherington <cth@carlh.net>2023-03-20 16:41:02 +0100
commit20e3e4c2a7a91e45740987a702f5d4c1ea2f9030 (patch)
treedd8d9a08834170980ff34ea288ed0334a8b2d9b0 /test/round_trip_test.cc
parent870f02f07ee51ee478006260e2c3b683e591b0c9 (diff)
Use an enum instead of a bool in PictureAsset::start_write().
Diffstat (limited to 'test/round_trip_test.cc')
-rw-r--r--test/round_trip_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/round_trip_test.cc b/test/round_trip_test.cc
index add00651..028accbe 100644
--- a/test/round_trip_test.cc
+++ b/test/round_trip_test.cc
@@ -71,7 +71,7 @@ BOOST_AUTO_TEST_CASE (round_trip_test)
boost::filesystem::create_directory (work_dir);
auto asset_A = make_shared<dcp::MonoPictureAsset>(dcp::Fraction (24, 1), dcp::Standard::SMPTE);
- auto writer = asset_A->start_write (work_dir / "video.mxf", false);
+ auto writer = asset_A->start_write(work_dir / "video.mxf", dcp::PictureAsset::Behaviour::MAKE_NEW);
dcp::ArrayData j2c ("test/data/flat_red.j2c");
for (int i = 0; i < 24; ++i) {
writer->write (j2c.data (), j2c.size ());