[FFmpeg-cvslog] avfilter/af_dialoguenhance: call av_frame_copy_props()
Paul B Mahol
git at videolan.org
Tue Jan 17 15:55:40 EET 2023
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Jan 17 14:43:01 2023 +0100| [2cee62295fec51b3452148dc3806e9a59d777e86] | committer: Paul B Mahol
avfilter/af_dialoguenhance: call av_frame_copy_props()
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2cee62295fec51b3452148dc3806e9a59d777e86
---
libavfilter/af_dialoguenhance.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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:
More information about the ffmpeg-cvslog
mailing list