avfilter/af_afir: call av_frame_copy_props()

pull/388/head
Paul B Mahol 2 years ago
parent cc7e984a05
commit 6a205d244a
  1. 1
      libavfilter/af_afir.c

@ -143,6 +143,7 @@ static int fir_frame(AudioFIRContext *s, AVFrame *in, AVFilterLink *outlink)
av_frame_free(&in);
return AVERROR(ENOMEM);
}
av_frame_copy_props(out, in);
out->pts = s->pts = in->pts;
s->in = in;

Loading…
Cancel
Save