diff mbox series

[FFmpeg-devel] avfilter/vf_tpad: apply start delay to EOF pts

Message ID 20231219085911.81874-2-mingyeong.kim@navercorp.com
State New
Headers show
Series [FFmpeg-devel] avfilter/vf_tpad: apply start delay to EOF pts | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Mingyeong Kim Dec. 19, 2023, 8:58 a.m. UTC
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@navercorp.com>
---
 libavfilter/vf_tpad.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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;