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

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2016-03-13 19:23:05 +01:00
parent 7c93f2c0b9
commit 8097455929

View File

@ -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);