From 4b27971a8e6d292d4f06c21733dca33be40a017d Mon Sep 17 00:00:00 2001 From: "robin@ynput.io" Date: Tue, 24 Sep 2024 17:26:37 -0400 Subject: [PATCH] Adjust comment. --- client/ayon_core/plugins/publish/extract_otio_review.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/client/ayon_core/plugins/publish/extract_otio_review.py b/client/ayon_core/plugins/publish/extract_otio_review.py index d1ac019c3a..01cd974dad 100644 --- a/client/ayon_core/plugins/publish/extract_otio_review.py +++ b/client/ayon_core/plugins/publish/extract_otio_review.py @@ -320,8 +320,8 @@ class ExtractOTIOReview(publish.Extractor): avl_start = avl_range.start_time avl_duration = avl_range.duration - # A gap is required before available range - # range to conform start point. + # An additional gap is required before the available + # range to conform source start point and head handles. if start < avl_start: gap_duration = avl_start - start start = avl_start @@ -332,8 +332,9 @@ class ExtractOTIOReview(publish.Extractor): # generate used frames self._generate_used_frames(gap_duration.round().to_frames()) - # A gap is required after available range - # if media duration is shorter then clip requirement + # An additional gap is required after the available + # range to conform to source end point + tail handles + # (media duration is shorter then clip requirement). end_point = start + duration avl_end_point = avl_range.end_time_exclusive() if end_point > avl_end_point: