1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-05-29 21:47:48 +02:00

avfilter/af_afir: call av_frame_copy_props()

This commit is contained in:
Paul B Mahol 2023-01-17 14:33:23 +01:00
parent cc7e984a05
commit 6a205d244a

View File

@ -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;