diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-10-11 10:47:42 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-13 10:19:13 +0200 |
commit | 9e8a327e68404f203451a80e0f0555a157f8fccf (patch) | |
tree | 37e32311792d0d5b3d6092c16dfcb8b282ef37c2 | |
parent | cdc4d9908954cd33089a0dd7a191979fe58cb505 (diff) | |
download | ffmpeg-9e8a327e68404f203451a80e0f0555a157f8fccf.tar.gz |
lavfi/src_avsynctest: set video frame durations
This filter produces CFR video output.
-rw-r--r-- | libavfilter/src_avsynctest.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/src_avsynctest.c b/libavfilter/src_avsynctest.c index c78e517ac3..78e4a2ba50 100644 --- a/libavfilter/src_avsynctest.c +++ b/libavfilter/src_avsynctest.c @@ -348,6 +348,7 @@ static int video_frame(AVFilterLink *outlink) } out->pts = s->vpts++; + out->duration = 1; return ff_filter_frame(outlink, out); } |