diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-01-17 14:43:01 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-01-17 14:50:08 +0100 |
commit | 2cee62295fec51b3452148dc3806e9a59d777e86 (patch) | |
tree | 17f2d7216760d975d103452b1026cd86fb76bb09 | |
parent | 8885d5dc7a8b06f73fb1b1f8c15c033109c3f013 (diff) | |
download | ffmpeg-2cee62295fec51b3452148dc3806e9a59d777e86.tar.gz |
avfilter/af_dialoguenhance: call av_frame_copy_props()
-rw-r--r-- | libavfilter/af_dialoguenhance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_dialoguenhance.c b/libavfilter/af_dialoguenhance.c index ae95f95d68..b613733faf 100644 --- a/libavfilter/af_dialoguenhance.c +++ b/libavfilter/af_dialoguenhance.c @@ -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: |