[FFmpeg-devel] [PATCH] avfilter/vf_tpad: apply start delay to EOF pts
Mingyeong Kim
homebodeveloper at gmail.com
Tue Dec 19 10:58:56 EET 2023
The added start delay cannot be considered in the EOF pts.
Previous tpad only forwards in-link's EOF pts to out-link.
Signed-off-by: Mingyeong Kim <mingyeong.kim at navercorp.com>
---
libavfilter/vf_tpad.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_tpad.c b/libavfilter/vf_tpad.c
index 1efe4ec479..bb6d60adbe 100644
--- a/libavfilter/vf_tpad.c
+++ b/libavfilter/vf_tpad.c
@@ -101,7 +101,7 @@ static int activate(AVFilterContext *ctx)
if (status == AVERROR_EOF) {
pts = av_rescale_q(pts, inlink->time_base, outlink->time_base);
if (!s->pad_stop && !s->pad_start) {
- ff_outlink_set_status(outlink, status, pts);
+ ff_outlink_set_status(outlink, status, s->pts + pts);
return 0;
}
s->eof = 1;
--
2.42.0
More information about the ffmpeg-devel
mailing list