summaryrefslogtreecommitdiff
path: root/examples
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 /examples
parent870f02f07ee51ee478006260e2c3b683e591b0c9 (diff)
Use an enum instead of a bool in PictureAsset::start_write().
Diffstat (limited to 'examples')
-rw-r--r--examples/make_dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/make_dcp.cc b/examples/make_dcp.cc
index 60f5608a..a99d4ef0 100644
--- a/examples/make_dcp.cc
+++ b/examples/make_dcp.cc
@@ -59,7 +59,7 @@ main ()
auto picture_asset = std::make_shared<dcp::MonoPictureAsset>(dcp::Fraction(24, 1), dcp::Standard::SMPTE);
/* Start off a write to it */
- auto picture_writer = picture_asset->start_write("DCP/picture.mxf", false);
+ auto picture_writer = picture_asset->start_write("DCP/picture.mxf", dcp::PictureAsset::Behaviour::MAKE_NEW);
/* Write 24 frames of the same JPEG2000 file */
dcp::ArrayData picture("examples/help.j2c");