avfilter/af_afftdn: call av_frame_copy_props()

This commit is contained in:
Paul B Mahol 2023-01-17 15:53:52 +01:00
parent 6d2b57fd31
commit 5625f0542d
1 changed files with 1 additions and 1 deletions

View File

@ -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++) {