summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-01-27 23:49:24 +0100
committerCarl Hetherington <cth@carlh.net>2026-02-16 01:20:17 +0100
commit5af584d7454b87e338498ffc8692918024e0868b (patch)
treecaff06ada1c4500ab0a1f7e6a83f4e079baeab67 /src/lib/ffmpeg_content.cc
parent987d5bec15a752bbc3d914035e5ab34d5c9b4efe (diff)
Remove another unnecessary Film parameter.
Diffstat (limited to 'src/lib/ffmpeg_content.cc')
-rw-r--r--src/lib/ffmpeg_content.cc2
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);
}
}