mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_telecine: remove redudant av_frame_copy_props()
It is already called by av_frame_clone(). Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
7f4a5006ce
commit
2e35686030
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue