diff mbox series

[FFmpeg-devel,3/8] lavfi/vf_tinterlace: set frame durations

Message ID 20221010161055.18948-3-anton@khirnov.net
State Accepted
Commit 19c701fac86ba069461b5ca1c572467f492c4f57
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
This filter is supposed to produce CFR output.
---
 libavfilter/vf_tinterlace.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/libavfilter/vf_tinterlace.c b/libavfilter/vf_tinterlace.c
index 399adc102d..7c54861de4 100644
--- a/libavfilter/vf_tinterlace.c
+++ b/libavfilter/vf_tinterlace.c
@@ -510,6 +510,7 @@  static int filter_frame(AVFilterLink *inlink, AVFrame *picref)
     }
 
     out->pts = av_rescale_q(out->pts, tinterlace->preout_time_base, outlink->time_base);
+    out->duration = av_rescale_q(1, av_inv_q(outlink->frame_rate), outlink->time_base);
     ret = ff_filter_frame(outlink, out);
 
     return ret;