diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-01-27 01:52:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-02-16 01:20:17 +0100 |
| commit | f015d6b314a6bfc8534e3e2c331d6edd5f817e25 (patch) | |
| tree | 04185cfa94b2a8c5c63be34d33432579f3a603ee /src/lib/transcode_job.cc | |
| parent | 4fb6584369785db4c03d9d0c536b57b25509f2ff (diff) | |
Move _film out of Job into only those Jobs that need it.
This meant some tweaks to the JSON server to only report DCP names for
TranscodeJobs, and a bit of (hopefully) tidying of the disk space check
in the batch converter.
Diffstat (limited to 'src/lib/transcode_job.cc')
| -rw-r--r-- | src/lib/transcode_job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/transcode_job.cc b/src/lib/transcode_job.cc index 49cbaf4a3..0748b9679 100644 --- a/src/lib/transcode_job.cc +++ b/src/lib/transcode_job.cc @@ -55,7 +55,7 @@ using std::dynamic_pointer_cast; /** @param film Film to use */ TranscodeJob::TranscodeJob(shared_ptr<const Film> film, ChangedBehaviour changed) - : Job(film) + : _film(film) , _changed(changed) { |
