Commit 2e356860 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_telecine: remove redudant av_frame_copy_props()

It is already called by av_frame_clone().
Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 7f4a5006
......@@ -235,7 +235,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
return AVERROR(ENOMEM);
}
av_frame_copy_props(frame, inpicref);
frame->pts = outlink->frame_count * tc->ts_unit;
ret = ff_filter_frame(outlink, frame);
}
......
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