diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-01-17 14:33:23 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-01-17 14:50:08 +0100 |
commit | 6a205d244ad0754e671062ed24f596e97e60ee7d (patch) | |
tree | 6779507b7836c1b86841469e52e520dc48828eaa /libavfilter/af_afir.c | |
parent | cc7e984a05b28dcfaaaad95afa061be71b4ba7fc (diff) | |
download | ffmpeg-6a205d244ad0754e671062ed24f596e97e60ee7d.tar.gz |
avfilter/af_afir: call av_frame_copy_props()
Diffstat (limited to 'libavfilter/af_afir.c')
-rw-r--r-- | libavfilter/af_afir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/af_afir.c b/libavfilter/af_afir.c index 11fa5074d0..0fe038972f 100644 --- a/libavfilter/af_afir.c +++ b/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; |