diff mbox series

[FFmpeg-devel,2/8] lavfi/settb: rescale input frame durations

Message ID 20221010161055.18948-2-anton@khirnov.net
State Accepted
Commit 7c299c117823a766558e893ae4e9ac91b9dcdc7b
Headers show
Series [FFmpeg-devel,1/8] lavfi/f_drawgraph: forward input frame durations | 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

Anton Khirnov Oct. 10, 2022, 4:10 p.m. UTC
---
 libavfilter/settb.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/libavfilter/settb.c b/libavfilter/settb.c
index 5f589004f8..23cb02689b 100644
--- a/libavfilter/settb.c
+++ b/libavfilter/settb.c
@@ -128,6 +128,7 @@  static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
     AVFilterLink *outlink = ctx->outputs[0];
 
     frame->pts = rescale_pts(inlink, outlink, frame->pts);
+    frame->duration = av_rescale_q(frame->duration, inlink->time_base, outlink->time_base);
 
     return ff_filter_frame(outlink, frame);
 }