diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-01-27 23:49:24 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-01-29 00:20:31 +0100 |
| commit | 9625a5430dd6885388e7a4c6ec56e579718a39e5 (patch) | |
| tree | f1d13807563e4a516820f92bd421dadf34453649 /src/lib/ffmpeg_content.cc | |
| parent | fef192a0d55e38b30a7fcf8559869e43dcc536f3 (diff) | |
Remove another unnecessary Film parameter.
Diffstat (limited to 'src/lib/ffmpeg_content.cc')
| -rw-r--r-- | src/lib/ffmpeg_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffmpeg_content.cc b/src/lib/ffmpeg_content.cc index 8207ae5f9..fbbf7aaa1 100644 --- a/src/lib/ffmpeg_content.cc +++ b/src/lib/ffmpeg_content.cc @@ -322,7 +322,7 @@ FFmpegContent::examine(shared_ptr<const Film> film, shared_ptr<Job> job, bool to /* FFmpeg has detected this file as 29.97 and the examiner thinks it is using "soft" 2:3 pulldown (telecine). * This means we can treat it as a 23.976fps file. */ - set_video_frame_rate(film, 24000.0 / 1001); + set_video_frame_rate(24000.0 / 1001); video->set_length(video->length() * 24.0 / 30); } } |
