diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-12-01 19:47:24 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-12-01 19:50:54 +0100 |
commit | 6b368bcb85bc7c2dc8544e40e7773dcbce272ab1 (patch) | |
tree | 50ef0ece454cb64469230fde9f6d47cc30e98eed | |
parent | 0d6a6c87500715212f2f537c62b837a630fafb49 (diff) | |
download | ffmpeg-6b368bcb85bc7c2dc8544e40e7773dcbce272ab1.tar.gz |
avfilter/af_apsyclip: add copy_props() call
-rw-r--r-- | libavfilter/af_apsyclip.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/af_apsyclip.c b/libavfilter/af_apsyclip.c index 78c0ca30ca..0b5859068b 100644 --- a/libavfilter/af_apsyclip.c +++ b/libavfilter/af_apsyclip.c @@ -556,6 +556,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) } s->in = in; + av_frame_copy_props(out, in); ff_filter_execute(ctx, psy_channels, out, NULL, FFMIN(outlink->ch_layout.nb_channels, ff_filter_get_nb_threads(ctx))); |