summaryrefslogtreecommitdiff
path: root/test/video_level_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-11-28 10:39:03 +0100
committerCarl Hetherington <cth@carlh.net>2021-11-28 21:08:08 +0100
commita2e41d9a95b6e0000f3a54f513214130f8b6ca9f (patch)
tree8387b4fe016bbd7fad09526a872ae5ef295f4d5a /test/video_level_test.cc
parent4ee083dc0862b30325c709e913772a6898378d0e (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 'test/video_level_test.cc')
-rw-r--r--test/video_level_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/video_level_test.cc b/test/video_level_test.cc
index ada9b602a..4483e22d5 100644
--- a/test/video_level_test.cc
+++ b/test/video_level_test.cc
@@ -406,7 +406,7 @@ static
pair<int, int>
V_movie_range (shared_ptr<Film> film)
{
- auto job = make_shared<TranscodeJob>(film);
+ auto job = make_shared<TranscodeJob>(film, TranscodeJob::ChangedBehaviour::IGNORE);
job->set_encoder (
make_shared<FFmpegEncoder>(film, job, film->file("export.mov"), ExportFormat::PRORES, true, false, false, 23)
);