From 5625f0542de2eebe8255d318f279d8c2f66c7c4d Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 17 Jan 2023 15:53:52 +0100 Subject: avfilter/af_afftdn: call av_frame_copy_props() --- libavfilter/af_afftdn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/af_afftdn.c b/libavfilter/af_afftdn.c index aa30e35d57..de17dc1b2c 100644 --- a/libavfilter/af_afftdn.c +++ b/libavfilter/af_afftdn.c @@ -1196,7 +1196,7 @@ static int output_frame(AVFilterLink *inlink, AVFrame *in) return AVERROR(ENOMEM); } - out->pts = in->pts; + av_frame_copy_props(out, in); } for (int ch = 0; ch < inlink->ch_layout.nb_channels; ch++) { -- cgit v1.2.3