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

avfilter/vf_vectorscope: copy frame props, mainly for bench filter

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 7c93f2c0
......@@ -1215,7 +1215,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
av_frame_free(&in);
return AVERROR(ENOMEM);
}
out->pts = in->pts;
av_frame_copy_props(out, in);
s->vectorscope(s, in, out, s->pd);
s->graticulef(s, out, s->x, s->y, s->pd, s->cs);
......
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