From 477ea48409c80bbc047c547bb222e87f994f5afa Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 25 Jan 2026 23:37:54 +0100 Subject: Fix incorrect calculation of DCP time from Atmos content time for the 2nd and subsequent reels. This would cause only the 1st reel of atmos content to make it into the DCP. --- src/lib/player.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/player.cc b/src/lib/player.cc index 12a1b39cd..dadf2c73e 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -1617,7 +1617,7 @@ Player::atmos(weak_ptr weak_piece, ContentAtmos data) auto const vfr = film->video_frame_rate(); - DCPTime const dcp_time = DCPTime::from_frames(data.frame, vfr) - DCPTime(piece->content->trim_start(), FrameRateChange(vfr, vfr)); + DCPTime const dcp_time = content_time_to_dcp(piece, ContentTime::from_frames(data.frame, vfr)); if (dcp_time < piece->content->position() || dcp_time >= (piece->content->end(film))) { return; } -- cgit v1.2.3