diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-12-06 21:06:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-12-06 21:06:19 +0100 |
| commit | 7c27dff5817715965e86798108c596f9a1675394 (patch) | |
| tree | 3cc04867706e1f2d2a316e5fa5868a123b237f6f /src/lib/reel_writer.cc | |
| parent | 504e234f92de578a8d1214d6a73c790a896f0a90 (diff) | |
Remove a pointless parameter that the callee can calculate.
Diffstat (limited to 'src/lib/reel_writer.cc')
| -rw-r--r-- | src/lib/reel_writer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/reel_writer.cc b/src/lib/reel_writer.cc index 3c516f54c..ab06819b1 100644 --- a/src/lib/reel_writer.cc +++ b/src/lib/reel_writer.cc @@ -93,13 +93,13 @@ mxf_metadata () /** @param job Related job, or 0 */ ReelWriter::ReelWriter ( - shared_ptr<const Film> film, DCPTimePeriod period, shared_ptr<Job> job, int reel_index, int reel_count, optional<string> content_summary + shared_ptr<const Film> film, DCPTimePeriod period, shared_ptr<Job> job, int reel_index, int reel_count ) : _film (film) , _period (period) , _reel_index (reel_index) , _reel_count (reel_count) - , _content_summary (content_summary) + , _content_summary (film->content_summary(period)) , _job (job) { /* Create or find our picture asset in a subdirectory, named |
