mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-18 04:47:12 +00:00
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);
|
return AVERROR(ENOMEM);
|
||||||
}
|
}
|
||||||
|
|
||||||
out->pts = in->pts;
|
av_frame_copy_props(out, in);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int ch = 0; ch < inlink->ch_layout.nb_channels; ch++) {
|
for (int ch = 0; ch < inlink->ch_layout.nb_channels; ch++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user