diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-01-27 23:10:24 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-01-27 23:13:16 +0100 |
commit | d9b07a98539b9d395df5d5e6a1d8ea91210991ee (patch) | |
tree | 913af76c0ab877ac3e827f3a8c5522b7c97e2b3c /libavfilter | |
parent | 23d0214939aedc77ab60d799cac4847d692358d5 (diff) | |
download | ffmpeg-d9b07a98539b9d395df5d5e6a1d8ea91210991ee.tar.gz |
avfilter/vf_ciescope: set output frame duration
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_ciescope.c | 1 |
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); |