diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-08-31 16:00:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-08-31 16:00:26 +0100 |
| commit | 7592dfb07d20667cf235ab9c30ebfe76e92c5e16 (patch) | |
| tree | d8815ea1b6dd04c518215d09c4f1f29bd9416d30 /examples | |
| parent | 49d779c5289ecfaf9acaac429251b2ffd032228a (diff) | |
Remove erroneous frames-per-second / length from CPL.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/make_dcp.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/make_dcp.cc b/examples/make_dcp.cc index 6da9cf20..58d55d1c 100644 --- a/examples/make_dcp.cc +++ b/examples/make_dcp.cc @@ -57,9 +57,8 @@ main () "My Film" is the title that will be shown on the projector / TMS when the DCP is ingested. FEATURE is the type that the projector will list the DCP as. - 24 is the frame rate, and the DCP will be 48 frames long (ie 2 seconds at 24 fps). */ - boost::shared_ptr<libdcp::CPL> cpl (new libdcp::CPL ("My Film DCP", "My Film", libdcp::FEATURE, 24, 48)); + boost::shared_ptr<libdcp::CPL> cpl (new libdcp::CPL ("My Film DCP", "My Film", libdcp::FEATURE)); /* And add the CPL to the DCP */ dcp.add_cpl (cpl); |
