Commit d9b07a98 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_ciescope: set output frame duration

parent 23d02149
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment