1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

avfilter/af_apsyclip: add copy_props() call

This commit is contained in:
Paul B Mahol 2022-12-01 19:47:24 +01:00
parent 0d6a6c8750
commit 6b368bcb85

View File

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