diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-20 00:31:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-20 20:36:46 +0100 |
| commit | 385635f00d39822389adbc99a2d5bdd992f16432 (patch) | |
| tree | 284ad0ac65988eb102f0f6334701496213cfd7a7 /src/lib/atmos_mxf_content.cc | |
| parent | 0b66748421b751b1863ce86f98ab449c8e8e87fc (diff) | |
Pass tolerant flag into Content::examine() and the ExamineContentJob.
Along the way this helps to fix #2942.
Diffstat (limited to 'src/lib/atmos_mxf_content.cc')
| -rw-r--r-- | src/lib/atmos_mxf_content.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/atmos_mxf_content.cc b/src/lib/atmos_mxf_content.cc index 6b2a64d68..df044a5d4 100644 --- a/src/lib/atmos_mxf_content.cc +++ b/src/lib/atmos_mxf_content.cc @@ -75,10 +75,10 @@ AtmosMXFContent::valid_mxf (boost::filesystem::path path) void -AtmosMXFContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job) +AtmosMXFContent::examine(shared_ptr<const Film> film, shared_ptr<Job> job, bool tolerant) { job->set_progress_unknown (); - Content::examine (film, job); + Content::examine(film, job, tolerant); auto a = make_shared<dcp::AtmosAsset>(path(0)); { |
