diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-04-08 20:42:37 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-04-08 20:42:37 +0200 |
| commit | 41b5c9b56a1ef4ac9119c11f166931936632ae0c (patch) | |
| tree | 726384c584afb4bd4c9a09463e6f6da713ab2d84 /src/lib/ffmpeg_decoder.cc | |
| parent | e6eee05a5daadabbbe829560faf5002adca9f945 (diff) | |
Make FrameRateChange data private.
Diffstat (limited to 'src/lib/ffmpeg_decoder.cc')
| -rw-r--r-- | src/lib/ffmpeg_decoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffmpeg_decoder.cc b/src/lib/ffmpeg_decoder.cc index 0f38b3247..719406259 100644 --- a/src/lib/ffmpeg_decoder.cc +++ b/src/lib/ffmpeg_decoder.cc @@ -176,7 +176,7 @@ FFmpegDecoder::flush_fill() auto const frc = film()->active_frame_rate_change(_ffmpeg_content->position()); ContentTime full_length (_ffmpeg_content->full_length(film()), frc); - full_length = full_length.ceil (frc.source); + full_length = full_length.ceil (frc.source()); if (video && !video->ignore()) { double const vfr = _ffmpeg_content->video_frame_rate().get(); auto const v = video->position(film()).get_value_or(ContentTime()) + ContentTime::from_frames(1, vfr); |
