diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-01-17 15:53:52 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-01-17 17:46:58 +0100 |
commit | 5625f0542de2eebe8255d318f279d8c2f66c7c4d (patch) | |
tree | a60251b0bc00e208ca3cfa1866fc3b04c965bc54 /libavfilter/af_afftdn.c | |
parent | 6d2b57fd31742e27d2fc6f6dbf88fa5ecdffcf05 (diff) | |
download | ffmpeg-5625f0542de2eebe8255d318f279d8c2f66c7c4d.tar.gz |
avfilter/af_afftdn: call av_frame_copy_props()
Diffstat (limited to 'libavfilter/af_afftdn.c')
-rw-r--r-- | libavfilter/af_afftdn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_afftdn.c b/libavfilter/af_afftdn.c index aa30e35d57..de17dc1b2c 100644 --- a/libavfilter/af_afftdn.c +++ b/libavfilter/af_afftdn.c @@ -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++) { |