summaryrefslogtreecommitdiff
path: root/libavfilter/vf_ciescope.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2023-01-27 23:10:24 +0100
committerPaul B Mahol <onemda@gmail.com>2023-01-27 23:13:16 +0100
commitd9b07a98539b9d395df5d5e6a1d8ea91210991ee (patch)
tree913af76c0ab877ac3e827f3a8c5522b7c97e2b3c /libavfilter/vf_ciescope.c
parent23d0214939aedc77ab60d799cac4847d692358d5 (diff)
downloadffmpeg-d9b07a98539b9d395df5d5e6a1d8ea91210991ee.tar.gz
avfilter/vf_ciescope: set output frame duration
Diffstat (limited to 'libavfilter/vf_ciescope.c')
-rw-r--r--libavfilter/vf_ciescope.c1
1 files changed, 1 insertions, 0 deletions
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);