[FFmpeg-cvslog] avfilter/vf_ciescope: set output frame duration

Paul B Mahol git at videolan.org
Sat Jan 28 00:08:03 EET 2023


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Jan 27 23:10:24 2023 +0100| [d9b07a98539b9d395df5d5e6a1d8ea91210991ee] | committer: Paul B Mahol

avfilter/vf_ciescope: set output frame duration

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d9b07a98539b9d395df5d5e6a1d8ea91210991ee
---

 libavfilter/vf_ciescope.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavfilter/vf_ciescope.c b/libavfilter/vf_ciescope.c
index 1af86f202c..eebb3af281 100644
--- a/libavfilter/vf_ciescope.c
+++ b/libavfilter/vf_ciescope.c
@@ -1407,6 +1407,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
         return AVERROR(ENOMEM);
     }
     out->pts = in->pts;
+    out->duration = in->duration;
 
     if (!s->background) {
         ret = draw_background(ctx);



More information about the ffmpeg-cvslog mailing list