diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-11-28 10:39:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-11-28 21:13:15 +0100 |
| commit | 94ab538738526948c5a52ed1222be1e484255541 (patch) | |
| tree | f14be732d23dfac5ee41149eaee2db43b1710d32 /src/lib/check_content_change_job.h | |
| parent | d41a59b6ef7a8c935f182d498ae4df0bdd66ba02 (diff) | |
Rearrange checking (and re-examining) content.
Most importantly, checking of content for changes before making
a DCP is now done in the TranscodeJob (rather than being in a
separate job). This makes things a little neater and also makes
the batch converter less confusing when you add a job whose content
has changed.
Diffstat (limited to 'src/lib/check_content_change_job.h')
| -rw-r--r-- | src/lib/check_content_change_job.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/check_content_change_job.h b/src/lib/check_content_change_job.h index 739d2651f..b3cdf594c 100644 --- a/src/lib/check_content_change_job.h +++ b/src/lib/check_content_change_job.h @@ -27,14 +27,10 @@ class CheckContentChangeJob : public Job { public: - CheckContentChangeJob (std::shared_ptr<const Film>, std::shared_ptr<Job> following = std::shared_ptr<Job>(), bool gui = true); + CheckContentChangeJob (std::shared_ptr<const Film>); ~CheckContentChangeJob (); std::string name () const; std::string json_name () const; void run (); - -private: - std::shared_ptr<Job> _following; - bool _gui; }; |
