avfilter/af_afftdn: call av_frame_copy_props()

pull/388/head
Paul B Mahol 2 years ago
parent 6d2b57fd31
commit 5625f0542d
  1. 2
      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++) {

Loading…
Cancel
Save