1
0
Fork 0

avfilter/af_dialoguenhance: call av_frame_copy_props()

This commit is contained in:
Paul B Mahol 2023-01-17 14:43:01 +01:00
parent 8885d5dc7a
commit 2cee62295f
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
s->in = in;
de_stereo(ctx, out);
out->pts = in->pts;
av_frame_copy_props(out, in);
out->nb_samples = in->nb_samples;
ret = ff_filter_frame(outlink, out);
fail: