mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/af_afftdn: call av_frame_copy_props()
This commit is contained in:
parent
6d2b57fd31
commit
5625f0542d
|
@ -1196,7 +1196,7 @@ static int output_frame(AVFilterLink *inlink, AVFrame *in)
|
|||
return AVERROR(ENOMEM);
|
||||
}
|
||||
|
||||
out->pts = in->pts;
|
||||
av_frame_copy_props(out, in);
|
||||
}
|
||||
|
||||
for (int ch = 0; ch < inlink->ch_layout.nb_channels; ch++) {
|
||||
|
|
Loading…
Reference in New Issue