mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_lagfun: call av_frame_copy_props()
This commit is contained in:
parent
3cc08688e3
commit
6ce51e5ee1
|
@ -173,7 +173,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||||
av_frame_free(&in);
|
av_frame_free(&in);
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
}
|
}
|
||||||
out->pts = in->pts;
|
av_frame_copy_props(out, in);
|
||||||
|
|
||||||
td.out = out;
|
td.out = out;
|
||||||
td.in = in;
|
td.in = in;
|
||||||
|
|
Loading…
Reference in New Issue