diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-01-17 22:50:38 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-01-17 22:55:14 +0100 |
commit | 6ce51e5ee14492d8f5af10ea500b25c615c0fc31 (patch) | |
tree | e46d84ae269e0ab936a276796b7432f095bb20de | |
parent | 3cc08688e3f41bd49563f61d35f40bbc78c4e369 (diff) | |
download | ffmpeg-6ce51e5ee14492d8f5af10ea500b25c615c0fc31.tar.gz |
avfilter/vf_lagfun: call av_frame_copy_props()
-rw-r--r-- | libavfilter/vf_lagfun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_lagfun.c b/libavfilter/vf_lagfun.c index 69191ac1d3..352f08512f 100644 --- a/libavfilter/vf_lagfun.c +++ b/libavfilter/vf_lagfun.c @@ -173,7 +173,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); td.out = out; td.in = in; |